TDME2 1.9.121
PrototypeParticleSystem_Emitter.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
12
13PrototypeParticleSystem_Emitter::PrototypeParticleSystem_Emitter(const string& name, int ordinal)
14 : Enum(name, ordinal)
15{
16}
17
24
26{
30 if (NONE->getName() == name) return NONE;
33 // TODO: throw exception here maybe
34 return nullptr;
35}
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * POINT_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * NONE
static PrototypeParticleSystem_Emitter * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * BOUNDINGBOX_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * SPHERE_PARTICLE_EMITTER
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * CIRCLE_PARTICLE_EMITTER_PLANE_VELOCITY
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Emitter * CIRCLE_PARTICLE_EMITTER
Enum base class.
Definition: Enum.h:14
const string & getName() const
Definition: Enum.h:30