Files
2026-04-22 15:51:07 +02:00

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();
};