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

19 lines
426 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "RoomFeature.generated.h"
class URoomFeature;
UCLASS(Blueprintable, DefaultToInstanced, EditInlineNew)
class URoomFeature : public UObject {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
TArray<URoomFeature*> RoomFeatures;
public:
URoomFeature();
};