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>2007-11-10 14:30:29 +0000
committerStijn Buys <ingar@osirion.org>2007-11-10 14:30:29 +0000
commit4b4936c2546e41b503e54d58a1badfec3493f53b (patch)
treefa39ca4f994a358e27388039a6937662dd419884 /src/game/sector.cc
parente61367a326a5b74bfc67cc66b711ab5a69532b7e (diff)
read .ini files
Diffstat (limited to 'src/game/sector.cc')
-rw-r--r--src/game/sector.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/game/sector.cc b/src/game/sector.cc
new file mode 100644
index 0000000..68938c2
--- /dev/null
+++ b/src/game/sector.cc
@@ -0,0 +1,22 @@
+/*
+ game/sector.cc
+ This file is part of the Osirion project and is distributed under
+ the terms and conditions of the GNU General Public License version 2
+*/
+
+// project headers
+#include "sector.h"
+
+namespace game {
+
+Sector::Sector()
+{
+ label = "";
+ name = "";
+}
+
+Sector::~Sector()
+{
+}
+
+} // namespace game