13 lines
326 B
C++
13 lines
326 B
C++
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#include "SkyPortalCommands.h"
|
||
|
|
||
|
#define LOCTEXT_NAMESPACE "FSkyPortalModule"
|
||
|
|
||
|
void FSkyPortalCommands::RegisterCommands()
|
||
|
{
|
||
|
UI_COMMAND(OpenPluginWindow, "SkyPortal", "Bring up SkyPortal window", EUserInterfaceActionType::Button, FInputChord());
|
||
|
}
|
||
|
|
||
|
#undef LOCTEXT_NAMESPACE
|