Renamed TargetController class to TargetControllerComponent

This commit is contained in:
Nav
2022-04-09 15:26:56 +01:00
parent 0655f058ef
commit 0a537dcf90
5 changed files with 65 additions and 65 deletions

View File

@@ -351,13 +351,13 @@ namespace Bloom
}
void Application::startTargetController() {
this->targetController = std::make_unique<TargetController>(
this->targetController = std::make_unique<TargetControllerComponent>(
this->projectConfig.value(),
this->environmentConfig.value()
);
this->targetControllerThread = std::thread(
&TargetController::run,
&TargetControllerComponent::run,
this->targetController.get()
);