mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
18 lines
278 B
C++
18 lines
278 B
C++
#pragma once
|
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
namespace metaforce {
|
|
class CVarManager;
|
|
|
|
namespace MP1 {
|
|
|
|
class CTweaks {
|
|
public:
|
|
void RegisterTweaks(CVarManager* cvarMgr);
|
|
void RegisterResourceTweaks(CVarManager* cvarMgr);
|
|
};
|
|
|
|
} // namespace MP1
|
|
} // namespace metaforce
|