DRG-Femboy-Voice/Source/FSD/Public/HostileGuntowerModuleController.h
2025-04-15 12:39:31 -07:00

22 lines
619 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Perception/AIPerceptionTypes.h"
#include "FSDAIController.h"
#include "HostileGuntowerModuleController.generated.h"
class AActor;
class UAIPerceptionComponent;
UCLASS(Blueprintable)
class AHostileGuntowerModuleController : public AFSDAIController {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UAIPerceptionComponent* Perception;
AHostileGuntowerModuleController();
UFUNCTION(BlueprintCallable)
void OnPerceptionUpdated(AActor* sensedActor, FAIStimulus Stimulus);
};