2022-02-19 13:04:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Gonna need these in all the tweaks anyway, so we'll include them here
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
|
2022-02-21 02:28:07 +00:00
|
|
|
#include "zeus/zeus.hpp"
|
2022-02-19 13:04:45 +00:00
|
|
|
|
|
|
|
namespace metaforce {
|
2022-02-21 02:28:07 +00:00
|
|
|
class CVar;
|
|
|
|
class CVarManager;
|
2022-02-19 13:04:45 +00:00
|
|
|
class CInputStream;
|
|
|
|
class COutputStream;
|
|
|
|
class ITweak {
|
|
|
|
public:
|
|
|
|
virtual ~ITweak() = default;
|
2022-02-21 02:28:07 +00:00
|
|
|
virtual void initCVars(CVarManager*) {}
|
2022-02-19 13:04:45 +00:00
|
|
|
};
|
|
|
|
} // namespace metaforce
|