2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-20 01:53:29 +00:00
metaforce/Runtime/Common/CTweaks.hpp

24 lines
318 B
C++

#ifndef __RETRO_CTWEAKS_HPP__
#define __RETRO_CTWEAKS_HPP__
#include <memory>
#include "CTweakParticle.hpp"
namespace Retro
{
namespace Common
{
class CTweaks
{
TOneStatic<CTweakParticle> m_particle;
public:
void RegisterTweaks();
void RegisterResourceTweaks();
};
}
}
#endif // __RETRO_CTWEAKS_HPP__