summaryrefslogtreecommitdiff
path: root/include/engine.h
blob: cc78fc393a94e3b1b754d65f636d3cf986126ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __ENGINE_H__
#define __ENGINE_H__

#include <SDL.h>
#include <Handle.h>
#include <Exceptions.h>

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();
	static void setappactive(bool);
	static bool getappactive();
	static void setcursorvisible(bool);
	static bool getcursorvisible();
	static bool quitrequested();
      private:
        static bool inited;
	static bool postsetuped;
	static bool appactive;
	static bool cursorvisible;
	static bool quitrequest;
    };
};

#endif