16 lines
379 B
C++
Executable file
16 lines
379 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "RoomGeneratorGroupInstance.generated.h"
|
|
|
|
class URoomGenerator;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FRoomGeneratorGroupInstance {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
TArray<URoomGenerator*> Rooms;
|
|
|
|
FSD_API FRoomGeneratorGroupInstance();
|
|
};
|
|
|