23 lines
564 B
C++
Executable file
23 lines
564 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UnlockReward.h"
|
|
#include "VictoryPoseReward.generated.h"
|
|
|
|
class UPlayerCharacterID;
|
|
class UVictoryPose;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UVictoryPoseReward : public UUnlockReward {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UVictoryPose* VictoryPose;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UPlayerCharacterID* OptionalCharacterID;
|
|
|
|
public:
|
|
UVictoryPoseReward();
|
|
};
|
|
|