mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
17 lines
373 B
C++
17 lines
373 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ExitCraftSpawnData.generated.h"
|
|
|
|
class UFortAthenaExitCraftInfo;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FExitCraftSpawnData {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UFortAthenaExitCraftInfo* ExitCraftInfo;
|
|
|
|
FORTNITEGAME_API FExitCraftSpawnData();
|
|
};
|
|
|