2015-11-02 18:45:39 +00:00
|
|
|
#ifndef _DNAMP1_CTWEAKGAME_HPP_
|
|
|
|
#define _DNAMP1_CTWEAKGAME_HPP_
|
|
|
|
|
|
|
|
#include "../../DNACommon/Tweaks/ITweakGame.hpp"
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-11-02 18:45:39 +00:00
|
|
|
{
|
|
|
|
namespace DNAMP1
|
|
|
|
{
|
|
|
|
|
|
|
|
struct CTweakGame : ITweakGame
|
|
|
|
{
|
|
|
|
DECL_YAML
|
|
|
|
String<-1> m_worldPrefix;
|
|
|
|
String<-1> m_ruinsArea; // ????
|
|
|
|
|
|
|
|
virtual const std::string& GetWorldPrefix() const { return m_worldPrefix; }
|
|
|
|
CTweakGame(Athena::io::IStreamReader& in) { this->read(in); }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|