16 lines
196 B
C
16 lines
196 B
C
|
#ifndef __RESOURCE_POOL
|
||
|
#define __RESOURCE_POOL
|
||
|
|
||
|
#include "lvgl.h"
|
||
|
|
||
|
namespace ResourcePool
|
||
|
{
|
||
|
|
||
|
void Init();
|
||
|
lv_font_t* GetFont(const char* name);
|
||
|
const void* GetImage(const char* name);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|