diff options
author | Pixel <Pixel> | 2002-11-04 15:19:18 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-11-04 15:19:18 +0000 |
commit | ec510c6361cf39fe3d1cad02c77de887b9d70e7a (patch) | |
tree | cb4d50380b0dfb5ef693b691156d26742d0c7de9 /includes/engine.h | |
parent | 419a05e177eb34815d6f8fad64654376805f1552 (diff) |
Working on mogltk
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 |