diff options
author | pommicket <pommicket@gmail.com> | 2023-08-12 10:41:22 -0300 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-08-12 10:41:22 -0300 |
commit | dbf441cdc74245c5a5f567ae0165146cd74c3b92 (patch) | |
tree | f1ca3bdf3102445a000bbc6e2695333150d0c0a2 /ted.c | |
parent | a974b6192479e5f7f6d6fcc328313c76290f486d (diff) |
more internralization
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}; |