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

20 lines
526 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "BuilderBase.h"
#include "MeshBaseProperties.h"
#include "CSGBase.generated.h"
UCLASS(Abstract, Blueprintable)
class UCSGBase : public UBuilderBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FMeshBaseProperties BaseProperties;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FTransform RelativeTransform;
UCSGBase();
};