mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
799 B
C++
25 lines
799 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortMissionEventParams.h"
|
|
#include "FortObjectiveNeutralCompleteParams.generated.h"
|
|
|
|
class AFortObjectiveBase;
|
|
class UFortObjectiveNeutralCompleteParams;
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortObjectiveNeutralCompleteParams : public UFortMissionEventParams {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
AFortObjectiveBase* NeutrallyCompletedObjective;
|
|
|
|
UFortObjectiveNeutralCompleteParams();
|
|
UFUNCTION(BlueprintCallable)
|
|
void SetParams(AFortObjectiveBase* _NeutrallyCompletedObjective, UFortObjectiveNeutralCompleteParams*& ThisParam);
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
void BreakParams(AFortObjectiveBase*& _NeutrallyCompletedObjective);
|
|
|
|
};
|
|
|