Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
}
}
}