Files
FNGameProj/Source/FortniteGame/Public/FOBSaveFileBuildingInstructionsHandler.h
2024-01-21 00:41:14 +01:00

18 lines
516 B
C++

#pragma once
#include "CoreMinimal.h"
#include "FortSaveFileBuildingInstructionsHandler.h"
#include "FOBSaveFileBuildingInstructionsHandler.generated.h"
UCLASS(Blueprintable)
class FORTNITEGAME_API AFOBSaveFileBuildingInstructionsHandler : public AFortSaveFileBuildingInstructionsHandler {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float BuildingPieceConstructionTime;
public:
AFOBSaveFileBuildingInstructionsHandler();
};