mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-11 06:33:28 +00:00
20 lines
279 B
C++
20 lines
279 B
C++
#ifndef __RETRO_CTWEAKS_HPP__
|
|
#define __RETRO_CTWEAKS_HPP__
|
|
|
|
#include "CTweakParticle.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CTweaks
|
|
{
|
|
TOneStatic<CTweakParticle> m_particle;
|
|
public:
|
|
void RegisterTweaks();
|
|
void RegisterResourceTweaks();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CTWEAKS_HPP__
|