metaforce/Runtime/Particle/CParticleSwoosh.hpp

20 lines
338 B
C++
Raw Normal View History

2015-08-21 00:06:39 +00:00
#ifndef __RETRO_CPARTICLESWOOSH_HPP__
#define __RETRO_CPARTICLESWOOSH_HPP__
2016-02-10 22:54:47 +00:00
#include "CElementGen.hpp"
2016-02-11 22:38:25 +00:00
#include "CToken.hpp"
2015-08-21 00:06:39 +00:00
namespace Retro
{
2016-02-11 22:38:25 +00:00
class CSwooshDescription;
2015-08-21 00:06:39 +00:00
2016-02-08 03:31:05 +00:00
class CParticleSwoosh : public CElementGen
2015-08-21 00:06:39 +00:00
{
2016-02-11 22:38:25 +00:00
public:
CParticleSwoosh(const TToken<CSwooshDescription>& desc, int);
2015-08-21 00:06:39 +00:00
};
}
#endif // __RETRO_CPARTICLESWOOSH_HPP__