TDME2 1.9.121
PrototypeParticleSystem_Type.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
11
13
14PrototypeParticleSystem_Type::PrototypeParticleSystem_Type(const string& name, int ordinal)
15 : Enum(name, ordinal)
16{
17}
18
23
25{
26 if (NONE->getName() == name) return NONE;
30 // TODO: throw exception here maybe
31 return nullptr;
32}
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * FOG_PARTICLE_SYSTEM
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * OBJECT_PARTICLE_SYSTEM
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * POINT_PARTICLE_SYSTEM
static PrototypeParticleSystem_Type * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT PrototypeParticleSystem_Type * NONE
Enum base class.
Definition: Enum.h:14
const string & getName() const
Definition: Enum.h:30