17 lines
421 B
C++
Executable file
17 lines
421 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "GenerationItem.h"
|
|
#include "LineSegmentCarver.generated.h"
|
|
|
|
class ULineSegmentCarverComponent;
|
|
|
|
UCLASS(Blueprintable)
|
|
class ALineSegmentCarver : public AGenerationItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
ULineSegmentCarverComponent* LineComponent;
|
|
|
|
ALineSegmentCarver();
|
|
};
|
|
|