summaryrefslogtreecommitdiff
path: root/includes/glfont.h
diff options
context:
space:
mode:
authorpixel <pixel>2002-11-11 20:07:41 +0000
committerpixel <pixel>2002-11-11 20:07:41 +0000
commit028c7dcfa9f1920d5fa2e573790bef40c4076275 (patch)
tree3c5f2bd9e90b7d57bae84111a200ee608c9d9bc3 /includes/glfont.h
parent9cde21d59d7c1f9b385d334cd60ae241ce9cf49b (diff)
Still working ;-)
Diffstat (limited to 'includes/glfont.h')
-rw-r--r--includes/glfont.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/includes/glfont.h b/includes/glfont.h
new file mode 100644
index 0000000..502ff49
--- /dev/null
+++ b/includes/glfont.h
@@ -0,0 +1,18 @@
+#ifndef __GLFONT_H__
+#define __GLFONT_H__
+
+#include "Exceptions.h"
+#include "gltexture.h"
+
+namespace mogltk {
+ class glfont : public Base {
+ public:
+ glfont();
+ virtual ~glfont();
+ void Load(const String &) throw (GeneralException);
+ private:
+ gltexture * fonttex;
+ };
+};
+
+#endif