metaforce/Runtime/Common/CTweaks.hpp

24 lines
318 B
C++
Raw Normal View History

2015-08-16 22:26:58 -07:00
#ifndef __RETRO_CTWEAKS_HPP__
#define __RETRO_CTWEAKS_HPP__
#include <memory>
#include "CTweakParticle.hpp"
namespace Retro
{
namespace Common
{
2015-08-16 22:26:58 -07:00
class CTweaks
{
TOneStatic<CTweakParticle> m_particle;
public:
void RegisterTweaks();
void RegisterResourceTweaks();
};
}
}
2015-08-16 22:26:58 -07:00
#endif // __RETRO_CTWEAKS_HPP__