mirror of https://github.com/AxioDL/metaforce.git
16 lines
275 B
C++
16 lines
275 B
C++
|
#ifndef __RETRO_CTWEAKS_HPP__
|
||
|
#define __RETRO_CTWEAKS_HPP__
|
||
|
|
||
|
#include <memory>
|
||
|
#include "CTweakParticle.hpp"
|
||
|
|
||
|
class CTweaks
|
||
|
{
|
||
|
TOneStatic<CTweakParticle> m_particle;
|
||
|
public:
|
||
|
void RegisterTweaks();
|
||
|
void RegisterResourceTweaks();
|
||
|
};
|
||
|
|
||
|
#endif // __RETRO_CTWEAKS_HPP__
|