MCPcopy Create free account
hub / github.com/alecthomas/entityx / update

Method update

examples/example.cc:383–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

381 }
382
383 void update(ex::TimeDelta dt) {
384 systems.update<SpawnSystem>(dt);
385 systems.update<BodySystem>(dt);
386 systems.update<BounceSystem>(dt);
387 systems.update<CollisionSystem>(dt);
388 systems.update<ExplosionSystem>(dt);
389 systems.update<ParticleSystem>(dt);
390 systems.update<RenderSystem>(dt);
391 systems.update<ParticleRenderSystem>(dt);
392 }
393};
394
395

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected