diff options
Diffstat (limited to 'source/Entity.cpp')
-rw-r--r-- | source/Entity.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/source/Entity.cpp b/source/Entity.cpp index e3af6d4d3..43f9e9431 100644 --- a/source/Entity.cpp +++ b/source/Entity.cpp @@ -70,7 +70,19 @@ cEntity::~cEntity() -CLASS_DEF_GETCLASS(cEntity); +const char * cEntity::GetClass(void) const +{ + return "cEntity"; +} + + + + + +const char * cEntity::GetClassStatic(void) +{ + return "cEntity"; +} |