mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
31 lines
952 B
C++
31 lines
952 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EnvironmentQuery/EnvQueryTest.h"
|
|
#include "FortAIAssignmentIdentifier.h"
|
|
#include "FortQueryTest_GoalBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable)
|
|
class UFortQueryTest_GoalBase : public UEnvQueryTest {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 bScoreEnemies: 1;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 bScoreEncounterGoals: 1;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 bScoreWorldGoals: 1;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 bScoreSpecificAssignments: 1;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FFortAIAssignmentIdentifier> AssignmentIDs;
|
|
|
|
public:
|
|
UFortQueryTest_GoalBase();
|
|
};
|
|
|