mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
23 lines
637 B
C++
23 lines
637 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EnvironmentQuery/EnvQueryTest.h"
|
|
#include "ECorePerceptionTypes.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "FortQueryTest_PerceptionExists.generated.h"
|
|
|
|
class UAISense;
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortQueryTest_PerceptionExists : public UEnvQueryTest {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TEnumAsByte<ECorePerceptionTypes::Type> Sense;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<UAISense> SenseClass;
|
|
|
|
UFortQueryTest_PerceptionExists();
|
|
};
|
|
|