You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #preflight skip #ROBOMERGE-AUTHOR: josh.adams #ROBOMERGE-SOURCE: CL 18242813 via CL 18244989 via CL 18245074 via CL 18245129 via CL 18246346 via CL 18246387 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v895-18170469) [CL 18246402 by josh adams in ue5-release-engine-test branch]
24 lines
471 B
C#
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;
|
|
}
|
|
}
|
|
}
|