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

15 lines
386 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "WeightedRoomSelectorItem.h"
#include "WeightedRoomSelector.generated.h"
USTRUCT(BlueprintType)
struct FWeightedRoomSelector {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
TArray<FWeightedRoomSelectorItem> Items;
FSD_API FWeightedRoomSelector();
};