summaryrefslogtreecommitdiff
path: root/includes/glbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/glbase.h')
-rw-r--r--includes/glbase.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/includes/glbase.h b/includes/glbase.h
deleted file mode 100644
index f8f0ae6..0000000
--- a/includes/glbase.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef __GLBASE_H__
-#define __GLBASE_H__
-
-#include <SDL.h>
-#include "Exceptions.h"
-
-namespace mogltk {
- class glbase : public Base {
- public:
- static int setup(int w = 640, int h = 480, int flags = 0) throw(GeneralException);
- static int GetWidth(void);
- static int GetHeight(void);
- static int GetInited(void);
- static void Enter2DMode(void);
- static void Leave2DMode(void);
- static void Flip(void);
- static bool is2D(void);
- private:
- static int width, height, inited, twoD;
- static SDL_Surface * surface;
- };
-};
-
-#endif