Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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