Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
new file mode 100644
index 0000000..d5e4542
--- /dev/null
+++ b/src/core/core.h
@@ -0,0 +1,22 @@
+/*
+ core/core.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_CORE_H__
+#define __INCLUDED_CORE_H__
+
+/// core contains the basic functionality of the engine
+namespace core
+{
+ /// initialize the core
+ void init();
+
+ /// shutdown the core
+ void shutdown();
+
+};
+
+#endif // __INCLUDED_CORE_H__
+