#ifndef APP_RESSOURCES_H #define APP_RESSOURCES_H #include typedef struct { int width, height; } TextSize; TextSize text_size(const char* text, void* font); typedef struct { uint8_t r, g, b, a; } Color; typedef struct { Color foreground; Color background; Color linenumber; } Theme; typedef struct { void* font; TextSize char_size; Theme theme; } AppRessources; #endif