SkyPortal-plugin/Source/SkyPortal/Public/SkyPortalCommands.h
Lucas Peter 35ea4db981
Initial
2024-09-17 17:50:37 +02:00

23 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;
};