summaryrefslogtreecommitdiff
path: root/src/font.h
diff options
context:
space:
mode:
authorraven <citrons@mondecitronne.com>2026-04-09 18:50:16 -0500
committerraven <citrons@mondecitronne.com>2026-04-09 18:51:00 -0500
commit75920242a0efd749bf88fe1eb9a51946bb2a2365 (patch)
tree0f5d35717b915b74e59161c69a722ada7b42123a /src/font.h
parent18a86e1038b20cb6f8922beead08dcc24ba2a4d3 (diff)
context menu to jump to different mappings
Diffstat (limited to 'src/font.h')
-rw-r--r--src/font.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/font.h b/src/font.h
new file mode 100644
index 0000000..d47d1d6
--- /dev/null
+++ b/src/font.h
@@ -0,0 +1,13 @@
+#ifndef FONT_H
+#define FONT_H
+
+#include <SDL3_ttf/SDL_ttf.h>
+
+#ifndef FONT_SIZE
+#define FONT_SIZE 13.0f
+#endif
+
+extern TTF_Font *font;
+void load_font();
+
+#endif