You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
605 B
C++
34 lines
605 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* Unreal UMG editor actions
|
|
*/
|
|
class FUMGEditorCommands : public TCommands<FUMGEditorCommands>
|
|
{
|
|
|
|
public:
|
|
FUMGEditorCommands() : TCommands<FUMGEditorCommands>
|
|
(
|
|
"UMGEditor", // Context name for fast lookup
|
|
NSLOCTEXT("Contexts", "UMGEditor", "UMG Editor"), // Localized context name for displaying
|
|
"EditorViewport", // Parent
|
|
FEditorStyle::GetStyleSetName() // Icon Style Set
|
|
)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* UMG Editor Commands
|
|
*/
|
|
|
|
|
|
/**
|
|
* Initialize commands
|
|
*/
|
|
virtual void RegisterCommands() override;
|
|
|
|
public:
|
|
};
|