summaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-07 00:42:14 +0000
committerpixel <pixel>2002-12-07 00:42:14 +0000
commit11f44e36d5f02f8309fc463f9a2c6cd81b42c3ce (patch)
treee0daba1124a46dd6dc30150066324f62c6c9eedc /include/engine.h
parent70ab3da408f5939fbfec4237e87f503ae82b2179 (diff)
Whoups
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/engine.h b/include/engine.h
new file mode 100644
index 0000000..2b8af3c
--- /dev/null
+++ b/include/engine.h
@@ -0,0 +1,16 @@
+#ifndef __ENGINE_H__
+#define __ENGINE_H__
+
+#include <IRC.h>
+
+namespace mogltk {
+ class engine : public Base {
+ public:
+ static int setup() throw(GeneralException);
+ static int GetInited();
+ private:
+ static int inited;
+ };
+};
+
+#endif