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