16 lines
493 B
C++
Executable file
16 lines
493 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SDFBaseWithTransformComponent.h"
|
|
#include "SDFTorusProperties.h"
|
|
#include "SDFTorusComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class FSDENGINE_API USDFTorusComponent : public USDFBaseWithTransformComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FSDFTorusProperties Properties;
|
|
|
|
USDFTorusComponent();
|
|
};
|
|
|