Renamed TargetController class to TargetControllerComponent
This commit is contained in:
@@ -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()
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user