metaforce/DataSpec/DNACommon/Tweaks/ITweakGame.hpp

17 lines
227 B
C++
Raw Normal View History

#ifndef __DNACOMMON_ITWEAKGAME_HPP__
#define __DNACOMMON_ITWEAKGAME_HPP__
#include "../DNACommon.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
{
struct ITweakGame : BigYAML
{
virtual const std::string& GetWorldPrefix() const=0;
};
}
#endif