mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
18 lines
516 B
C++
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();
|
|
};
|
|
|