19 lines
456 B
C++
Executable file
19 lines
456 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "TrackBuilderItem.h"
|
|
#include "PipelineBuilderItem.generated.h"
|
|
|
|
class UItemPlacerAggregator;
|
|
|
|
UCLASS(Abstract, Blueprintable)
|
|
class FSD_API APipelineBuilderItem : public ATrackBuilderItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UItemPlacerAggregator* SegmentPlacer;
|
|
|
|
public:
|
|
APipelineBuilderItem();
|
|
};
|
|
|