Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/zoneproperties.h')
-rw-r--r--src/zoneproperties.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/zoneproperties.h b/src/zoneproperties.h
index e69de29..9b79569 100644
--- a/src/zoneproperties.h
+++ b/src/zoneproperties.h
@@ -0,0 +1,35 @@
+/*
+ zoneproperties.h
+ This file is part of the Project::OSiRiON world editor
+ and is distributed under the terms and conditions of
+ the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_EDITOR_ZONEPROPERTIES__
+#define __INCLUDED_EDITOR_ZONEPROPERTIES__
+
+#include "properties.h"
+
+#include <QTextStream>
+
+namespace editor
+{
+
+/**
+ * @brief contains the game properties for a zone
+ * */
+class ZoneProperties : public Properties
+{
+public:
+ ZoneProperties();
+ virtual ~ZoneProperties();
+
+ /**
+ * @brief save ini formatted zone properties to a textstream
+ * */
+ virtual void save(QTextStream &textstream);
+};
+
+} // namespace editor
+
+#endif // __INCLUDED_EDITOR_ZONEPROPERTIES__