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.cc')
-rw-r--r--src/core/core.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/core.cc b/src/core/core.cc
index b2327ee..c77087e 100644
--- a/src/core/core.cc
+++ b/src/core/core.cc
@@ -4,7 +4,25 @@
the terms of the GNU General Public License version 2.
*/
+#include <string>
+
+#include "core.h"
+
namespace core
{
+std::string core_name("The Osirion Project");
+std::string core_version("0.1");
+
+const std::string &name()
+{
+ return core_name;
+}
+
+const std::string & version()
+{
+ return core_version;
}
+
+}
+