2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 02:31:20 +00:00
metaforce/DataSpec/DNAMP1/Tweaks/CTweakGame.hpp
2016-03-04 13:04:53 -10:00

24 lines
431 B
C++

#ifndef _DNAMP1_CTWEAKGAME_HPP_
#define _DNAMP1_CTWEAKGAME_HPP_
#include "../../DNACommon/Tweaks/ITweakGame.hpp"
namespace DataSpec
{
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