summaryrefslogtreecommitdiff
path: root/includes/glbase.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-04-13 12:44:14 +0000
committerpixel <pixel>2003-04-13 12:44:14 +0000
commit7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (patch)
treef25e693f7842364b0416593cf6a77d383812ce91 /includes/glbase.h
parentec2c97793151512f5dca3290dbd9f24a09b7ac6f (diff)
Removing Baltisot from there
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