From 11f44e36d5f02f8309fc463f9a2c6cd81b42c3ce Mon Sep 17 00:00:00 2001 From: pixel Date: Sat, 7 Dec 2002 00:42:14 +0000 Subject: Whoups --- include/glfont.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/glfont.h (limited to 'include/glfont.h') diff --git a/include/glfont.h b/include/glfont.h new file mode 100644 index 0000000..de4ef63 --- /dev/null +++ b/include/glfont.h @@ -0,0 +1,25 @@ +#ifndef __GLFONT_H__ +#define __GLFONT_H__ + +#include +#include +#include +#include "gltexture.h" + +namespace mogltk { + class font : public Base { + public: + font(const String & = "font.bin"); + virtual ~font(); + void drawentry(Uint16, Color = Color(255, 255, 255), int = -1, int = -1); + + private: + Uint8 * sizes; + Uint16 nbentries, nbcT, nbT; + Uint8 flags, maxX, maxY, nbcU, nbcV; + texture ** fonttex; + Uint16 * corresp; + }; +}; + +#endif -- cgit v1.2.3