mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
593 B
C++
23 lines
593 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "PotentialSpectatorTarget.generated.h"
|
|
|
|
class AFortPlayerStateAthena;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FPotentialSpectatorTarget {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
int32 Rank;
|
|
|
|
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TWeakObjectPtr<AFortPlayerStateAthena> PlayerState;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bCurrentViewTarget;
|
|
|
|
FORTNITEUI_API FPotentialSpectatorTarget();
|
|
};
|
|
|