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

17 lines
377 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "IRandRange.generated.h"
USTRUCT(BlueprintType)
struct FIRandRange {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Min;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 Max;
FSD_API FIRandRange();
};