Files
UnrealEngine/Engine/Source/Programs/UnrealInsights/Private/UserInterfaceCommand.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
477 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FUserInterfaceCommand
{
public:
/** Executes the command. */
static void Run(bool bFrontendMode, const FString& TraceFileToOpen);
protected:
/**
* Initializes the Slate application.
*/
static void InitializeSlateApplication(bool bFrontendMode, const FString& TraceFileToOpen);
/**
* Shuts down the Slate application.
*/
static void ShutdownSlateApplication();
};