X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgame%2Fstage.cpp;h=8d781f28961fc77da688b640c9c579a44c9b4a28;hb=86057ab12bea9aaf40be2f1f2a0a3e64e94f0313;hp=73eb9a55f7299542cb08cf8c95b44083d7ee8fc2;hpb=f93a0f0afe8aff4d0bbc8ee393918881cfdd9db8;p=libs%2Fgame.git diff --git a/source/game/stage.cpp b/source/game/stage.cpp index 73eb9a5..8d781f2 100644 --- a/source/game/stage.cpp +++ b/source/game/stage.cpp @@ -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