26 lines
534 B
C++
26 lines
534 B
C++
// Copyright Ralpha Team. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Framework/Commands/Commands.h"
|
|
#include "RalphaEditorStyle.h"
|
|
|
|
class FRalphaEditorCommands : public TCommands<FRalphaEditorCommands>
|
|
{
|
|
public:
|
|
FRalphaEditorCommands()
|
|
: TCommands<FRalphaEditorCommands>(
|
|
TEXT("Ralpha"),
|
|
NSLOCTEXT("Contexts", "Ralpha", "Ralpha Plugin"),
|
|
NAME_None,
|
|
FRalphaEditorStyle::GetStyleSetName())
|
|
{
|
|
}
|
|
|
|
virtual void RegisterCommands() override;
|
|
|
|
public:
|
|
TSharedPtr<FUICommandInfo> StartServer;
|
|
};
|