mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
13 lines
288 B
C++
13 lines
288 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerCameraBase.h"
|
|
#include "FortPlayerCameraZone.generated.h"
|
|
|
|
UCLASS(Blueprintable, MinimalAPI, NonTransient)
|
|
class AFortPlayerCameraZone : public AFortPlayerCameraBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
AFortPlayerCameraZone();
|
|
};
|
|
|