mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-15 03:26:08 +00:00
Various stubs, and starting on core functionality
This commit is contained in:
23
DataSpec/DNAMP1/Tweaks/CTweakGame.hpp
Normal file
23
DataSpec/DNAMP1/Tweaks/CTweakGame.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef _DNAMP1_CTWEAKGAME_HPP_
|
||||
#define _DNAMP1_CTWEAKGAME_HPP_
|
||||
|
||||
#include "../../DNACommon/Tweaks/ITweakGame.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
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
|
||||
Reference in New Issue
Block a user