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

24 lines
645 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BakeSettings.h"
#include "Templates/SubclassOf.h"
#include "CSGChildInstanceProperties.generated.h"
class ACSGBuilder;
USTRUCT(BlueprintType)
struct FCSGChildInstanceProperties {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<ACSGBuilder> Mesh;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FBakeSettings Settings;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Seed;
FSDENGINE_API FCSGChildInstanceProperties();
};