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