summaryrefslogtreecommitdiff
path: root/includes/glfont.h
blob: 502ff49a2b2b3c01798d5217b9a49476d3904942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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