diff options
author | pixel <pixel> | 2003-01-22 01:11:50 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-01-22 01:11:50 +0000 |
commit | ac4600dbd1260c0703c59d46512656ad3823f848 (patch) | |
tree | f7703e53587ce79dd6d287c20e971c3db97239fe /include | |
parent | 38a65f1d57c4dc65dcce9056725ce26e0474eabc (diff) |
commit of the day
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.h | 6 |
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; }; }; |