aboutsummaryrefslogtreecommitdiff
path: root/src/sdl/font.h
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2019-01-21 22:59:20 -0500
committerPaul Duncan <pabs@pablotron.org>2019-01-21 22:59:20 -0500
commit57d7bdc68b774c1e55ebc281786b93c7336eb4e4 (patch)
treed112af1f16958425b109b884728aa3f70880d8e2 /src/sdl/font.h
parent119e48bfa0f20686bc7cb0fd43323a7648aa598a (diff)
downloadsok-57d7bdc68b774c1e55ebc281786b93c7336eb4e4.tar.bz2
sok-57d7bdc68b774c1e55ebc281786b93c7336eb4e4.zip
add src/sdl/font.[hc]
Diffstat (limited to 'src/sdl/font.h')
-rw-r--r--src/sdl/font.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sdl/font.h b/src/sdl/font.h
new file mode 100644
index 0000000..edc1a14
--- /dev/null
+++ b/src/sdl/font.h
@@ -0,0 +1,9 @@
+#ifndef FONT_H
+#define FONT_H
+
+#include <SDL_ttf.h>
+#include "assets.h"
+
+TTF_Font *font_load(const asset_id_t, const int);
+
+#endif /* FONT_H */