GeekTrack/2.Firmware/components/GeekOS/Resource/ResourcePool.h

16 lines
196 B
C
Raw Normal View History

2022-09-18 18:40:49 +08:00
#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