gravity working through manager
[physics.git] / src / entityManager.cpp
index 000fd4b..850f70f 100644 (file)
@@ -1,11 +1,9 @@
-#include <set>
-using std::set;
-
-#include <iostream>
-
 #include "entityManager.h"
 #include "debug.h"
 
+#include <set>
+#include <iostream>
+
 #include "Entities/Entity.h"
 #include "Entities/Particle.h"
 #include "Entities/PhysicsEntity.h"
@@ -15,13 +13,13 @@ void updateParticles(float);
 void updatePhysics(float);
 
 /// ***** Private Variables *****
-typedef set<Particle*> setPart;
+typedef std::set<Particle*> setPart;
 setPart particles_To_Add;
 setPart active_Particles;
 setPart particles_To_Remove;
 bool clearParticles;
 
-typedef set<PhysicsEntity*> setPhys;
+typedef std::set<PhysicsEntity*> setPhys;
 setPhys physics_To_Add;
 setPhys active_Physics;
 setPhys physics_To_Remove;