2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-14 13:13:29 +00:00
2018-02-21 21:24:51 -10:00

20 lines
272 B
C++

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