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

17 lines
397 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "PillarSegment.generated.h"
USTRUCT(BlueprintType)
struct FPillarSegment {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Scale;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float HeightOffset;
FSD_API FPillarSegment();
};