metaforce/Runtime/Particle/CParticleElectric.hpp

19 lines
325 B
C++
Raw Normal View History

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