20 lines
499 B
C++
Executable file
20 lines
499 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "RoomGeneratorBase.h"
|
|
#include "RoomGenerator.generated.h"
|
|
|
|
class URoomFeature;
|
|
|
|
UCLASS(Blueprintable)
|
|
class URoomGenerator : public URoomGeneratorBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
TArray<URoomFeature*> RoomFeatures;
|
|
|
|
URoomGenerator();
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
TArray<URoomFeature*> GetAllRoomFeatures() const;
|
|
|
|
};
|
|
|