DRG-Femboy-Voice/Source/FSD/Public/FuelLineBuilderItem.h
2025-04-15 12:39:31 -07:00

23 lines
630 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "TrackBuilderItem.h"
#include "FuelLineBuilderItem.generated.h"
class UItemPlacerAggregator;
UCLASS(Abstract, Blueprintable)
class FSD_API AFuelLineBuilderItem : public ATrackBuilderItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UItemPlacerAggregator* SegmentPlacer;
public:
AFuelLineBuilderItem();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void ReceivePlacementUpdated(bool InCanPlace, bool InConnecting, float InDistanceProgress);
};