From ac4600dbd1260c0703c59d46512656ad3823f848 Mon Sep 17 00:00:00 2001 From: pixel Date: Wed, 22 Jan 2003 01:11:50 +0000 Subject: commit of the day --- include/engine.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/engine.h') 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; }; }; -- cgit v1.2.3