diff options
Diffstat (limited to 'ted.c')
-rw-r--r-- | ted.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,11 @@ #include <SDL_syswm.h> #endif +struct LoadedFont { + char *path; + Font *font; +}; + void die(const char *fmt, ...) { char buf[256] = {0}; |