X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=blobdiff_plain;f=src%2FentityManager.cpp;h=f707061a823dbb60872e34045f60bcd671c1f690;hp=000fd4b0e4527e2222c7c6dab027c86ee677f1bf;hb=f72f4a59026b8daa160908170f366c843aca5bb9;hpb=63ae369aa5699bbeb3613586ac446c2a5c1868e2 diff --git a/src/entityManager.cpp b/src/entityManager.cpp index 000fd4b..f707061 100644 --- a/src/entityManager.cpp +++ b/src/entityManager.cpp @@ -1,5 +1,4 @@ #include -using std::set; #include @@ -15,13 +14,13 @@ void updateParticles(float); void updatePhysics(float); /// ***** Private Variables ***** -typedef set setPart; +typedef std::set setPart; setPart particles_To_Add; setPart active_Particles; setPart particles_To_Remove; bool clearParticles; -typedef set setPhys; +typedef std::set setPhys; setPhys physics_To_Add; setPhys active_Physics; setPhys physics_To_Remove;