summaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-01-21 03:00:13 +0000
committerpixel <pixel>2003-01-21 03:00:13 +0000
commit38a65f1d57c4dc65dcce9056725ce26e0474eabc (patch)
tree5cd44b75ad4a152fb299f33994a17c76b4fadd11 /include/engine.h
parentcbb8340d3b139596e94f2caa3ca51577d8fa3d0e (diff)
Fixing more things...
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h6
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;
};
};