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

20 lines
524 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CSGCylinderProperties.generated.h"
USTRUCT(BlueprintType)
struct FCSGCylinderProperties {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Height;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Radius;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Sides;
FSDENGINE_API FCSGCylinderProperties();
};