TDME2 1.9.121
PrototypePhysics_BodyType.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
12
13PrototypePhysics_BodyType::PrototypePhysics_BodyType(const string& name, int ordinal): Enum(name, ordinal)
14{
15}
16
21
23{
24 if (NONE->getName() == name) return NONE;
25 if (COLLISION_BODY->getName() == name) return COLLISION_BODY;
28 // TODO: throw exception here maybe
29 return nullptr;
30}
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * STATIC_RIGIDBODY
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
const string & getName() const
Definition: Enum.h:30