2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-08-17 05:26:58 +00:00
|
|
|
|
2015-08-23 23:58:07 +00:00
|
|
|
#include "RetroTypes.hpp"
|
2018-01-15 16:00:20 +00:00
|
|
|
namespace hecl
|
|
|
|
{
|
|
|
|
class CVarManager;
|
|
|
|
}
|
2015-08-17 05:26:58 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-17 22:05:00 +00:00
|
|
|
{
|
2015-11-02 18:45:39 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
namespace MP1
|
|
|
|
{
|
2015-08-17 22:05:00 +00:00
|
|
|
|
2015-08-17 05:26:58 +00:00
|
|
|
class CTweaks
|
|
|
|
{
|
|
|
|
public:
|
2018-01-15 16:00:20 +00:00
|
|
|
void RegisterTweaks(hecl::CVarManager* cvarMgr);
|
|
|
|
void RegisterResourceTweaks(hecl::CVarManager* cvarMgr);
|
2015-08-17 05:26:58 +00:00
|
|
|
};
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
|