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

16 lines
392 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CSGSphereProperties.h"
#include "ConvexMeshWithCachedTree.h"
#include "CSGSphere.generated.h"
UCLASS(Blueprintable)
class UCSGSphere : public UConvexMeshWithCachedTree {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FCSGSphereProperties Properties;
UCSGSphere();
};