Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-19 17:37:01 +0000
committerStijn Buys <ingar@osirion.org>2008-02-19 17:37:01 +0000
commit41ad1e4c9e2a70d0a8811f4b035f0d3018045e61 (patch)
treeabe7fa4544c22ba0cfa6375fd56f2e596f1bf626 /src/core/core.h
parent7daaf66869b7b9f85f71b1aa5e9a1b4c40710f33 (diff)
client-to-server connection
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 2a23d84..ddf884f 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -7,10 +7,7 @@
#ifndef __INCLUDED_CORE_H__
#define __INCLUDED_CORE_H__
-/// core contains the basic functionality of the engine
-namespace core
-{
-}
+#include <string>
#include "core/application.h"
#include "core/commandbuffer.h"
@@ -24,5 +21,17 @@ namespace core
#include "core/netconnection.h"
#include "core/player.h"
+/// core contains the basic functionality of the engine
+namespace core
+{
+
+// name of the engine core
+const std::string & name();
+
+// version of the engine core
+const std::string & version();
+
+}
+
#endif // __INCLUDED_CORE_H__