]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/stage.cpp
Adjust component ticking
[libs/game.git] / source / game / stage.cpp
index 73eb9a55f7299542cb08cf8c95b44083d7ee8fc2..8d781f28961fc77da688b640c9c579a44c9b4a28 100644 (file)
@@ -15,12 +15,8 @@ Stage::~Stage()
 
 void Stage::tick(Time::TimeDelta dt)
 {
-       for(const auto &s: systems)
-               s->pre_tick();
        for(const auto &s: systems)
                s->tick(dt);
-       for(const auto &s: systems)
-               s->post_tick();
 }
 
 } // namespace Msp::Game