1
0

Hello TOR 2k24

Have fun 🚀
This commit is contained in:
2024-04-10 19:17:57 +02:00
commit f821a46ea0
62 changed files with 21518 additions and 0 deletions

27
resources_manager.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef _RESOURCES_MANAGER_H
#define _RESOURCES_MANAGER_H
#include "gfx.h"
// Image indexes
#define token 0
#define token_w 1
// Font indexes
#define arial_12 0
#define arial__14 1
#ifdef __cplusplus
extern "C" {
#endif
bool_t guiResourcesManagerInit(void);
gdispImage* gstudioGetImage(int imageIndex);
const char* gstudioGetImageFilePath(int imageIndex);
font_t gstudioGetFont(int fontIndex);
#ifdef __cplusplus
}
#endif
#endif // _RESOURCES_MANAGER_H