summaryrefslogtreecommitdiff
path: root/include/glfont.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-03-28 12:30:26 +0000
committerpixel <pixel>2003-03-28 12:30:26 +0000
commit541c00c93fcd98f766cce661aa83ef4ffe713e57 (patch)
tree2300eff5c56164578988d4f4d57147c60657c7ad /include/glfont.h
parentbe0486797260377246c1ea1229cca27c19c64ad2 (diff)
First part of the backend separation
Diffstat (limited to 'include/glfont.h')
-rw-r--r--include/glfont.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/include/glfont.h b/include/glfont.h
index 1931467..2076675 100644
--- a/include/glfont.h
+++ b/include/glfont.h
@@ -2,20 +2,15 @@
#define __GLFONT_H__
#include <SDL.h>
-#include "font.h"
+#include <font.h>
+#include <mcolor.h>
namespace mogltk {
class glfont : public font {
public:
glfont(Handle *);
virtual ~glfont();
- void drawentry(Uint16, int, int, glColorP = WHITE);
-
- protected:
- virtual gltexture * alloctexture();
-
- private:
- void Bind(int);
+ void drawentry(Uint16, int, int, ColorP = WHITE);
};
};