diff options
Diffstat (limited to '')
-rw-r--r-- | source/Entity.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/Entity.cpp b/source/Entity.cpp index 381a62e42..e3af6d4d3 100644 --- a/source/Entity.cpp +++ b/source/Entity.cpp @@ -197,6 +197,17 @@ void cEntity::RemoveFromChunk(void) +void cEntity::Tick(float a_Dt, MTRand & a_TickRandom) +{ + UNUSED(a_TickRandom); + + HandlePhysics(a_Dt); +} + + + + + bool cEntity::IsA(const char * a_ClassName) const { return (strcmp(a_ClassName, "cEntity") == 0); |