mirror of https://github.com/AxioDL/metaforce.git
17 lines
224 B
C++
17 lines
224 B
C++
|
#ifndef __DNACOMMON_ITWEAKGAME_HPP__
|
||
|
#define __DNACOMMON_ITWEAKGAME_HPP__
|
||
|
|
||
|
#include "../DNACommon.hpp"
|
||
|
|
||
|
namespace Retro
|
||
|
{
|
||
|
|
||
|
struct ITweakGame : BigYAML
|
||
|
{
|
||
|
virtual const std::string& GetWorldPrefix() const=0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|