mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
13 lines
305 B
C++
13 lines
305 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortActivatablePanel.h"
|
|
#include "FortCreativeOptionsDisplay.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortCreativeOptionsDisplay : public UFortActivatablePanel {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortCreativeOptionsDisplay();
|
|
};
|
|
|