18 lines
466 B
C++
Executable file
18 lines
466 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DeepCSGNode.h"
|
|
#include "DeepCSGFloatTreePacked.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FDeepCSGFloatTreePacked {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FDeepCSGNode Root;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<int32> encplanes;
|
|
|
|
FSDENGINE_API FDeepCSGFloatTreePacked();
|
|
};
|
|
|