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

18 lines
443 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "RandRange.h"
#include "RandFloatIntervalItem.generated.h"
USTRUCT(BlueprintType)
struct FRandFloatIntervalItem {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float Weight;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandRange range;
FSD_API FRandFloatIntervalItem();
};