Input system complete (untested)

This commit is contained in:
2014-03-07 02:53:52 +01:00
parent b1f0bc7cce
commit 95a36794e3
6 changed files with 53 additions and 13 deletions
+1
View File
@@ -32,6 +32,7 @@ void World::RecursiveUpdate(std::shared_ptr<System> system, double dt, EntityID
void World::Update(double dt)
{
for (auto system : m_Systems) {
system->Update(dt);
RecursiveUpdate(system, dt, 0);
}
}