mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 02:31:20 +00:00
23 lines
251 B
C++
23 lines
251 B
C++
#ifndef __RETRO_CTWEAKS_HPP__
|
|
#define __RETRO_CTWEAKS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
namespace MP1
|
|
{
|
|
|
|
class CTweaks
|
|
{
|
|
public:
|
|
void RegisterTweaks();
|
|
void RegisterResourceTweaks();
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CTWEAKS_HPP__
|