2020-08-05 10:46:06 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "Framework/Commands/Commands.h"
|
2022-05-09 13:12:28 -04:00
|
|
|
#include "Styling/AppStyle.h"
|
2020-08-05 10:46:06 -04:00
|
|
|
|
|
|
|
|
class FLevelAssetEditorCommands : public TCommands<FLevelAssetEditorCommands>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
FLevelAssetEditorCommands()
|
2022-05-09 13:12:28 -04:00
|
|
|
: TCommands<FLevelAssetEditorCommands>(TEXT("LevelAssetEditor"), NSLOCTEXT("Contexts", "FLevelAssetEditorModule", "Level Asset Editor Plugin"), NAME_None, FAppStyle::GetAppStyleSetName())
|
2020-08-05 10:46:06 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TCommands<> interface
|
|
|
|
|
virtual void RegisterCommands() override;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
TSharedPtr< FUICommandInfo > OpenPluginWindow;
|
|
|
|
|
};
|