fed/app_ressources.h
2025-07-04 02:48:44 +02:00

29 lines
419 B
C

#ifndef APP_RESSOURCES_H
#define APP_RESSOURCES_H
#include <stdint.h>
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