diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/engine.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/engine.h b/include/engine.h index d739bde..58ca46f 100644 --- a/include/engine.h +++ b/include/engine.h @@ -12,8 +12,14 @@ namespace mogltk { static int GetInited(); static SDL_RWops * RWFromHandle(Handle *) throw (GeneralException); static void pollevents(); + static void setappactive(bool); + static bool getappactive(); + static void setcursorvisible(bool); + static bool getcursorvisible(); private: static int inited; + static bool appactive; + static bool cursorvisible; }; }; |