/* 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" 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__