added more colors and balls
[physics.git] / src / entityManager.cpp
index 000fd4b..f707061 100644 (file)
@@ -1,5 +1,4 @@
 #include <set>
-using std::set;
 
 #include <iostream>
 
@@ -15,13 +14,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;