mirror of https://github.com/AxioDL/metaforce.git
27 lines
337 B
C++
27 lines
337 B
C++
#ifndef __URDE_CTWEAKS_HPP__
|
|
#define __URDE_CTWEAKS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
namespace hecl
|
|
{
|
|
class CVarManager;
|
|
}
|
|
|
|
namespace urde
|
|
{
|
|
|
|
namespace MP1
|
|
{
|
|
|
|
class CTweaks
|
|
{
|
|
public:
|
|
void RegisterTweaks(hecl::CVarManager* cvarMgr);
|
|
void RegisterResourceTweaks(hecl::CVarManager* cvarMgr);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __URDE_CTWEAKS_HPP__
|