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

18 lines
430 B
C++
Executable file

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