One hell of a GUI interface (minus graphical)

"how does this even work lol"
This commit is contained in:
2014-05-26 02:37:45 +02:00
parent 07c74ff9f5
commit 22442708cc
34 changed files with 466 additions and 353 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ void World::Update(double dt)
{
const std::string &type = pair.first;
auto system = pair.second;
m_EventBroker->Process(type);
EventBroker->Process(type);
system->Update(dt);
RecursiveUpdate(system, dt, 0);
}
@@ -129,7 +129,7 @@ void World::Initialize()
{
auto system = pair.second;
system->RegisterComponents(&m_ComponentFactory);
system->RegisterResourceTypes(&m_ResourceManager);
system->RegisterResourceTypes(ResourceManager);
system->Initialize();
}
}