It finally imports somewhat

This commit is contained in:
Dynamitos
2024-05-01 19:05:48 +02:00
parent 2c1669aab4
commit dfcfc2bb1e
19 changed files with 108 additions and 84 deletions
+2 -2
View File
@@ -7,9 +7,9 @@ void SystemGraph::addSystem(System::OSystemBase system)
systems.add(std::move(system));
}
void SystemGraph::run(ThreadPool& threadPool, float deltaTime)
void SystemGraph::run(float deltaTime)
{
for(auto& system : systems) {
system->run(threadPool, deltaTime);
system->run(deltaTime);
}
}