mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
20 lines
492 B
C++
20 lines
492 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerControllerSpectating.h"
|
|
#include "FortLiveSpectatorController.generated.h"
|
|
|
|
class AFortPlayerState;
|
|
|
|
UCLASS(Blueprintable)
|
|
class FORTNITEGAME_API AFortLiveSpectatorController : public AFortPlayerControllerSpectating {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
AFortPlayerState* FollowedPlayerState;
|
|
|
|
public:
|
|
AFortLiveSpectatorController();
|
|
};
|
|
|