From 4b4936c2546e41b503e54d58a1badfec3493f53b Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 10 Nov 2007 14:30:29 +0000 Subject: read .ini files --- src/game/sector.cc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/game/sector.cc (limited to 'src/game/sector.cc') 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 -- cgit v1.2.3