summaryrefslogtreecommitdiff
path: root/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'font.cpp')
-rw-r--r--font.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/font.cpp b/font.cpp
new file mode 100644
index 0000000..22020c9
--- /dev/null
+++ b/font.cpp
@@ -0,0 +1,8 @@
+#include <cassert>
+#include "font.h"
+
+
+Font::Font(const unsigned char *filedata,unsigned int file_len)
+ :filedata(filedata),file_len(file_len){
+ assert(sf_font.loadFromMemory(filedata,file_len));
+}