blob: 9e6ac804c79e1bc8aaa50e26507424e7794cb812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
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__
|