19 lines
569 B
C++
19 lines
569 B
C++
// ©2023 Batty Bovine Productions, LLC. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class FComboActionGraphEditorCommands : public TCommands<FComboActionGraphEditorCommands>
|
|
{
|
|
public:
|
|
FComboActionGraphEditorCommands()
|
|
: TCommands<FComboActionGraphEditorCommands>("ComboActionGraphEditor", NSLOCTEXT("Contexts", "ComboActionGraphEditor", "Combo Action Graph Editor"), NAME_None, FAppStyle::GetAppStyleSetName())
|
|
{
|
|
}
|
|
|
|
TSharedPtr<FUICommandInfo> AutoArrange;
|
|
TSharedPtr<FUICommandInfo> ValidateGraph;
|
|
|
|
virtual void RegisterCommands() override;
|
|
}; |