summaryrefslogtreecommitdiff
path: root/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'font.h')
-rw-r--r--font.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/font.h b/font.h
new file mode 100644
index 0000000..059beb5
--- /dev/null
+++ b/font.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <SFML/Graphics.hpp>
+
+
+class Font{
+public:
+ const unsigned char *filedata;
+ unsigned int file_len;
+ sf::Font sf_font;
+
+ Font(const unsigned char *filedata,unsigned int file_len);
+};