X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=blobdiff_plain;f=src%2FentityManager.cpp;h=c78a7cee555b4b2d4f153e5045e305d0507f8571;hp=c7fc78b91abbca14de1ba322edcccb98c31427db;hb=a823a80039c6069bb7676433832d9f9413494860;hpb=46e842c7cc2e977f9bdd9fb4480dac26163fa25b 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); }