TDME2 1.9.121
PrototypeParticleSystem_Type.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
12
13/**
14 * Prototype particle system type enum
15 * @author Andreas Drewke
16 */
18{
19public:
24
25 /**
26 * Public constructor
27 * @param name name
28 * @param ordinal ordinal
29 */
30 PrototypeParticleSystem_Type(const string& name, int ordinal);
31
32 /**
33 * Returns enum object given by name
34 * @param name name
35 * @return enum object
36 */
37 static PrototypeParticleSystem_Type* valueOf(const string& name);
38
39};
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
PrototypeParticleSystem_Type(const string &name, int ordinal)
Public constructor.
Enum base class.
Definition: Enum.h:14
int32_t ordinal
Definition: Enum.h:17
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11