Files
UnrealEngine/Engine/Source/Programs/TraceAnalyzer/Private/Command.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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