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

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;
};