diff options
Diffstat (limited to 'src/fontface.h')
-rw-r--r-- | src/fontface.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fontface.h b/src/fontface.h new file mode 100644 index 0000000..a220608 --- /dev/null +++ b/src/fontface.h @@ -0,0 +1,12 @@ +
+#ifndef __FONTFACE_H
+#define __FONTFACE_H
+
+#include <SDL.h>
+
+#define FONTHEIGHT 8
+#define FONTWIDTH 8
+
+extern const Uint8 Font_Face[256][FONTHEIGHT];
+
+#endif
|