TDME2 1.9.121
PrototypePhysics_BodyType.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
14
15/**
16 * Prototype physics body type enum
17 * @author Andreas Drewke
18 */
20{
21public:
26
27 /**
28 * Public constructor
29 * @param name name
30 * @param ordinal ordinal
31 */
32 PrototypePhysics_BodyType(const string& name, int ordinal);
33
34 /**
35 * Returns enum object given by name
36 * @param name name
37 * @return enum object
38 */
39 static PrototypePhysics_BodyType* valueOf(const string& name);
40
41};
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * STATIC_RIGIDBODY
PrototypePhysics_BodyType(const string &name, int ordinal)
Public constructor.
static PrototypePhysics_BodyType * valueOf(const string &name)
Returns enum object given by name.
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * NONE
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * COLLISION_BODY
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * DYNAMIC_RIGIDBODY
Enum base class.
Definition: Enum.h:14
int32_t ordinal
Definition: Enum.h:17
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11