24 lines
550 B
C
24 lines
550 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "Framework/Commands/Commands.h"
|
||
|
#include "SkyPortalStyle.h"
|
||
|
|
||
|
class FSkyPortalCommands : public TCommands<FSkyPortalCommands>
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
FSkyPortalCommands()
|
||
|
: TCommands<FSkyPortalCommands>(TEXT("SkyPortal"), NSLOCTEXT("Contexts", "SkyPortal", "SkyPortal Plugin"), NAME_None, FSkyPortalStyle::GetStyleSetName())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// TCommands<> interface
|
||
|
virtual void RegisterCommands() override;
|
||
|
|
||
|
public:
|
||
|
TSharedPtr< FUICommandInfo > OpenPluginWindow;
|
||
|
};
|