Files
townengine/townengine/text.h
2024-07-30 22:31:18 +03:00

27 lines
257 B
C

#ifndef TEXT_H
#define TEXT_H
#include "util.h"
struct text {
char *text;
t_color color;
int ptsize;
};
struct text_cache_item {
char *key;
struct text *value;
};
struct text_cache {
struct text_cache_item *hash;
};
#endif