10 lines
364 B
C++
Executable file
10 lines
364 B
C++
Executable file
#include "HostileGuntowerModuleController.h"
|
|
#include "Perception/AIPerceptionComponent.h"
|
|
|
|
void AHostileGuntowerModuleController::OnPerceptionUpdated(AActor* sensedActor, FAIStimulus Stimulus) {
|
|
}
|
|
|
|
AHostileGuntowerModuleController::AHostileGuntowerModuleController() {
|
|
this->Perception = CreateDefaultSubobject<UAIPerceptionComponent>(TEXT("Perception"));
|
|
}
|
|
|