Files
2025-05-18 13:04:45 +08:00

30 lines
570 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FUserInterfaceCommand
{
public:
/** Executes the command. */
static void Run( );
protected:
/**
* Initializes the Slate application.
*
* @param LayoutInit The path to the layout configuration file.
*/
static void InitializeSlateApplication( const FString& LayoutIni );
/**
* Shuts down the Slate application.
*
* @param LayoutInit The path to the layout configuration file.
*/
static void ShutdownSlateApplication( const FString& LayoutIni );
};