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

18 lines
463 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "RandFloatInterval.h"
#include "VeteranComposition.generated.h"
USTRUCT(BlueprintType)
struct FVeteranComposition {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandFloatInterval Normal;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandFloatInterval Large;
FSD_API FVeteranComposition();
};