gravity well now follows the mouse
[physics.git] / src / entityManager.cpp
index c7fc78b..c78a7ce 100644 (file)
@@ -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);
 }