summaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-01-22 01:11:50 +0000
committerpixel <pixel>2003-01-22 01:11:50 +0000
commitac4600dbd1260c0703c59d46512656ad3823f848 (patch)
treef7703e53587ce79dd6d287c20e971c3db97239fe /include/engine.h
parent38a65f1d57c4dc65dcce9056725ce26e0474eabc (diff)
commit of the day
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/engine.h b/include/engine.h
index 58ca46f..cc78fc3 100644
--- a/include/engine.h
+++ b/include/engine.h
@@ -9,6 +9,7 @@ namespace mogltk {
class engine : public Base {
public:
static int setup() throw(GeneralException);
+ static int postsetup() throw(GeneralException);
static int GetInited();
static SDL_RWops * RWFromHandle(Handle *) throw (GeneralException);
static void pollevents();
@@ -16,10 +17,13 @@ namespace mogltk {
static bool getappactive();
static void setcursorvisible(bool);
static bool getcursorvisible();
+ static bool quitrequested();
private:
- static int inited;
+ static bool inited;
+ static bool postsetuped;
static bool appactive;
static bool cursorvisible;
+ static bool quitrequest;
};
};