SkyPortal-plugin/Source/SkyPortal/Public/SkyPortalCommands.h

24 lines
550 B
C
Raw Normal View History

2024-09-17 15:50:37 +00:00
// 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;
};