aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/example.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/examples/example.cc b/examples/example.cc
index bd049ba..6331325 100644
--- a/examples/example.cc
+++ b/examples/example.cc
@@ -365,14 +365,7 @@ public:
}
void update(ex::TimeDelta dt) {
- systems.update<SpawnSystem>(dt);
- systems.update<BodySystem>(dt);
- systems.update<BounceSystem>(dt);
- systems.update<CollisionSystem>(dt);
- systems.update<ExplosionSystem>(dt);
- systems.update<ParticleSystem>(dt);
- systems.update<RenderSystem>(dt);
- systems.update<ParticleRenderSystem>(dt);
+ systems.update_all(dt);
}
};