Files
UnrealEngine/Engine/Source/Programs/UnrealInsights/Private/UserInterfaceCommand.h
2025-05-18 13:04:45 +08: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();
};