1
0
This repository has been archived on 2024-09-17. You can view files and clone it, but cannot push or open issues or pull requests.
tor-heredero-tokenring/resources_manager.h
2024-04-11 17:50:55 +02:00

28 lines
464 B
C

#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