metaforce/Runtime/Particle/CElementGen.hpp

20 lines
251 B
C++
Raw Normal View History

2015-08-17 23:46:41 +00:00
#ifndef __RETRO_CELEMENTGEN_HPP__
#define __RETRO_CELEMENTGEN_HPP__
2015-08-21 00:06:39 +00:00
#include "CParticleGen.hpp"
2015-08-17 23:46:41 +00:00
namespace Retro
{
2015-08-21 00:06:39 +00:00
class CElementGen : public CParticleGen
2015-08-17 23:46:41 +00:00
{
2015-08-18 05:54:43 +00:00
public:
static void Initialize()
{
}
2015-08-17 23:46:41 +00:00
};
}
#endif // __RETRO_CELEMENTGEN_HPP__