2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-18 08:33:29 +00:00
2018-10-06 17:42:33 -10:00

18 lines
200 B
C++

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