Merge remote-tracking branch 'origin/master' into havok

This commit is contained in:
ViktorLjung
2014-05-24 18:35:26 +02:00
14 changed files with 142 additions and 44 deletions
+2
View File
@@ -36,7 +36,9 @@ void World::Update(double dt)
{
for (auto pair : m_Systems)
{
const std::string &type = pair.first;
auto system = pair.second;
m_EventBroker->Process(type);
system->Update(dt);
RecursiveUpdate(system, dt, 0);
}