Files
UnrealEngine/Engine/Source/Programs/TraceAnalyzer/Private/Command.h
2025-05-18 13:04:45 +08:00

21 lines
292 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreTypes.h"
namespace UE
{
namespace TraceAnalyzer
{
struct FCommand
{
const TCHAR* Name;
const TCHAR* Description;
int32 (*Main)(int32, TCHAR const* const*);
};
} // namespace TraceAnalyzer
} // namespace UE