X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FGameStates%2FRunning.cpp;fp=src%2FGameStates%2FRunning.cpp;h=a09f912adea2ae0df05c1c48f62567e421edb134;hb=d388f0eca9748dc15b8dc9146b75828bb9dcabf0;hp=10026da8d4b86b0a992ebd36c055a8bf18f922f9;hpb=b9b948d8e87c8d5935ac918fe88f6c199be31970;p=physics.git diff --git a/src/GameStates/Running.cpp b/src/GameStates/Running.cpp index 10026da..a09f912 100644 --- a/src/GameStates/Running.cpp +++ b/src/GameStates/Running.cpp @@ -4,11 +4,11 @@ /// ***** Constructors/Destructors ***** Running::Running() { - entityManager::init(); + manager::init(); } Running::~Running() { - entityManager::clean(); + manager::clean(); } /// ***** Public Class Methods ***** @@ -16,17 +16,17 @@ void Running::handleInput(bool on_top) const { if( on_top ) { - entityManager::handleInput(); + manager::handleInput(); } } void Running::update(float time_step, bool on_top) const { if( on_top ) { - entityManager::update(time_step); + manager::update(time_step); } } void Running::draw(bool on_top) const { - entityManager::draw(); + manager::draw(); }