Files
UnrealEngine/Engine/Source/Programs/Windows/UnrealWindowsForms/Gauntlet/GauntletBuildLauncherDialog.cs
2025-05-18 13:04:45 +08:00

24 lines
471 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Text;
namespace UnrealWindowsForms
{
public static class GauntletBuildLauncherDialog
{
public static List<string> ShowDialogAndReturnRunParams(string RootPath)
{
BuildLauncher Dialog = new BuildLauncher(RootPath);
if (Dialog.ShowDialog() != System.Windows.Forms.DialogResult.OK)
{
return null;
}
return Dialog.RunParams;
}
}
}