Renamed DebugServer class to DebugServerComponent

This commit is contained in:
Nav
2022-03-31 16:01:43 +01:00
parent 74977804b1
commit e52ef609a4
5 changed files with 15 additions and 15 deletions

View File

@@ -390,12 +390,12 @@ namespace Bloom
}
void Application::startDebugServer() {
this->debugServer = std::make_unique<DebugServers::DebugServer>(
this->debugServer = std::make_unique<DebugServers::DebugServerComponent>(
this->debugServerConfig.value()
);
this->debugServerThread = std::thread(
&DebugServers::DebugServer::run,
&DebugServers::DebugServerComponent::run,
this->debugServer.get()
);