summaryrefslogtreecommitdiff
path: root/include/glfont.h
blob: 207667583ca45e1f73c2ffe373acba6227fa001c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __GLFONT_H__
#define __GLFONT_H__

#include <SDL.h>
#include <font.h>
#include <mcolor.h>

namespace mogltk {
    class glfont : public font {
      public:
          glfont(Handle *);
	  virtual ~glfont();
	void drawentry(Uint16, int, int, ColorP = WHITE);
    };
};

#endif