mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 07:51:20 +00:00
14 lines
219 B
C++
14 lines
219 B
C++
#pragma once
|
|
|
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
|
|
|
namespace hecl {
|
|
class CVarManager;
|
|
}
|
|
namespace DataSpec {
|
|
struct ITweak : BigDNA {
|
|
|
|
virtual void initCVars(hecl::CVarManager*) {}
|
|
};
|
|
} // namespace DataSpec
|