diff options
author | pixel <pixel> | 2003-01-21 03:00:13 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-01-21 03:00:13 +0000 |
commit | 38a65f1d57c4dc65dcce9056725ce26e0474eabc (patch) | |
tree | 5cd44b75ad4a152fb299f33994a17c76b4fadd11 /include | |
parent | cbb8340d3b139596e94f2caa3ca51577d8fa3d0e (diff) |
Fixing more things...
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; }; }; |