metaforce/DataSpec/DNACommon/Tweaks/ITweak.hpp

18 lines
200 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-01-21 06:03:37 +00:00
2018-06-29 20:21:36 +00:00
#include "DataSpec/DNACommon/DNACommon.hpp"
2017-01-21 06:03:37 +00:00
2018-01-15 16:00:20 +00:00
namespace hecl
{
class CVarManager;
}
2017-01-21 06:03:37 +00:00
namespace DataSpec
{
2018-02-22 07:24:51 +00:00
struct ITweak : BigDNA
2017-01-21 06:03:37 +00:00
{
2018-01-15 16:00:20 +00:00
virtual void initCVars(hecl::CVarManager*) {}
2017-01-21 06:03:37 +00:00
};
}