mirror of https://github.com/AxioDL/metaforce.git
20 lines
377 B
C++
20 lines
377 B
C++
|
#pragma once
|
||
|
|
||
|
// Gonna need these in all the tweaks anyway, so we'll include them here
|
||
|
#include "zeus/zeus.hpp"
|
||
|
#include "Runtime/GCNTypes.hpp"
|
||
|
|
||
|
namespace hecl {
|
||
|
class CVarManager;
|
||
|
}
|
||
|
|
||
|
namespace metaforce {
|
||
|
class CInputStream;
|
||
|
class COutputStream;
|
||
|
class ITweak {
|
||
|
public:
|
||
|
virtual ~ITweak() = default;
|
||
|
virtual void initCVars(hecl::CVarManager*) {}
|
||
|
};
|
||
|
} // namespace metaforce
|