X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FentityManager.cpp;h=c78a7cee555b4b2d4f153e5045e305d0507f8571;hb=refs%2Ftags%2Fv0.05;hp=c7fc78b91abbca14de1ba322edcccb98c31427db;hpb=54fe85c5d10e60da6a9c9bbde11f7215723da572;p=physics.git diff --git a/src/entityManager.cpp b/src/entityManager.cpp index c7fc78b..c78a7ce 100644 --- a/src/entityManager.cpp +++ b/src/entityManager.cpp @@ -25,6 +25,7 @@ #include "Entities/PhysicsEntity.h" #include "collisionHandler.h" +#include "effectManager.h" /// ***** Private Method Headers ***** @@ -107,10 +108,12 @@ void manager::remove(Entity* e) void manager::handleInput() { - // TODO + effect::handleInput(); } void manager::update(float time_step) { + effect::update(time_step); + updateParticles(time_step); updatePhysics(time_step); }