2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-13 16:33:29 +00:00
2018-06-29 10:21:36 -10:00

20 lines
288 B
C++

#ifndef __DNACOMMON_ITWEAK_HPP__
#define __DNACOMMON_ITWEAK_HPP__
#include "DataSpec/DNACommon/DNACommon.hpp"
namespace hecl
{
class CVarManager;
}
namespace DataSpec
{
struct ITweak : BigDNA
{
virtual void initCVars(hecl::CVarManager*) {}
};
}
#endif // __DNACOMMON_ITWEAK_HPP__