mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:11:20 +00:00
29 lines
366 B
C++
29 lines
366 B
C++
#ifndef __RETRO_CEMITTERELEMENT_HPP__
|
|
#define __RETRO_CEMITTERELEMENT_HPP__
|
|
|
|
#include "IElement.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CEmitterElement : public IElement
|
|
{
|
|
};
|
|
|
|
class CEESimpleEmitter : public CEmitterElement
|
|
{
|
|
};
|
|
|
|
class CVESphere : public CEmitterElement
|
|
{
|
|
};
|
|
|
|
class CVEAngularSphere : public CEmitterElement
|
|
{
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CEMITTERELEMENT_HPP__
|