mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-20 01:53:29 +00:00
21 lines
280 B
C++
21 lines
280 B
C++
#ifndef __RETRO_CTWEAKPARTICLE_HPP__
|
|
#define __RETRO_CTWEAKPARTICLE_HPP__
|
|
|
|
#include "CBasics.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CTweakParticle : TOneStatic<CTweakParticle>
|
|
{
|
|
public:
|
|
CTweakParticle(CInputStream&);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CTWEAKPARTICLE_HPP__
|