mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-16 05:51:22 +00:00
20 lines
251 B
C++
20 lines
251 B
C++
#ifndef __RETRO_CELEMENTGEN_HPP__
|
|
#define __RETRO_CELEMENTGEN_HPP__
|
|
|
|
#include "CParticleGen.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CElementGen : public CParticleGen
|
|
{
|
|
public:
|
|
static void Initialize()
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CELEMENTGEN_HPP__
|