15 lines
339 B
C++
Executable file
15 lines
339 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "RandIntervalItem.h"
|
|
#include "RandInterval.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FRandInterval {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FRandIntervalItem> Intervals;
|
|
|
|
FSD_API FRandInterval();
|
|
};
|
|
|