diff options
Diffstat (limited to 'includes/engine.h')
-rw-r--r-- | includes/engine.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/includes/engine.h b/includes/engine.h new file mode 100644 index 0000000..e7a4f6b --- /dev/null +++ b/includes/engine.h @@ -0,0 +1,16 @@ +#ifndef __ENGINE_H__ +#define __ENGINE_H__ + +#include "Exceptions.h" + +namespace mogltk { + class engine { + public: + static int setup() throw(GeneralException); + static int GetInited(); + private: + static int inited; + }; +}; + +#endif |