summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/Framework/engine.h')
-rw-r--r--source/Concept/Framework/engine.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/Concept/Framework/engine.h b/source/Concept/Framework/engine.h
new file mode 100644
index 0000000..406d46e
--- /dev/null
+++ b/source/Concept/Framework/engine.h
@@ -0,0 +1,19 @@
+#ifndef _ENGINE_H
+#define _ENGINE_H
+
+#include "stdafx.h"
+
+class Engine : public IO_Module
+{
+public:
+ Engine()
+ {
+ }
+
+ Engine(uint32 engineId)
+ {
+ this->moduleId = engineId;
+ }
+};
+
+#endif \ No newline at end of file