Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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 );
};