diff options
author | pixel <pixel> | 2003-04-13 12:44:14 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-04-13 12:44:14 +0000 |
commit | 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (patch) | |
tree | f25e693f7842364b0416593cf6a77d383812ce91 /includes/glfont.h | |
parent | ec2c97793151512f5dca3290dbd9f24a09b7ac6f (diff) |
Removing Baltisot from there
Diffstat (limited to 'includes/glfont.h')
-rw-r--r-- | includes/glfont.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/includes/glfont.h b/includes/glfont.h deleted file mode 100644 index 831da5e..0000000 --- a/includes/glfont.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef __GLFONT_H__ -#define __GLFONT_H__ - -#include <SDL.h> -#include "String.h" -#include "gltexture.h" -#include "Color.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 |