mirror of https://github.com/AxioDL/metaforce.git
21 lines
300 B
C++
21 lines
300 B
C++
#pragma once
|
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
namespace hecl {
|
|
class CVarManager;
|
|
}
|
|
|
|
namespace urde {
|
|
|
|
namespace MP1 {
|
|
|
|
class CTweaks {
|
|
public:
|
|
void RegisterTweaks(hecl::CVarManager* cvarMgr);
|
|
void RegisterResourceTweaks(hecl::CVarManager* cvarMgr);
|
|
};
|
|
|
|
} // namespace MP1
|
|
} // namespace urde
|