mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 07:51:21 +00:00
25 lines
261 B
C++
25 lines
261 B
C++
#pragma once
|
|
|
|
#include "RetroTypes.hpp"
|
|
namespace hecl
|
|
{
|
|
class CVarManager;
|
|
}
|
|
|
|
namespace urde
|
|
{
|
|
|
|
namespace MP1
|
|
{
|
|
|
|
class CTweaks
|
|
{
|
|
public:
|
|
void RegisterTweaks(hecl::CVarManager* cvarMgr);
|
|
void RegisterResourceTweaks(hecl::CVarManager* cvarMgr);
|
|
};
|
|
|
|
}
|
|
}
|
|
|