WIP launch

This commit is contained in:
Mino 2020-04-08 23:24:34 +09:00
parent 9965dc313a
commit 2c2db8e779
5 changed files with 47 additions and 1 deletions

View file

@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace Dalamud.Bootstrap.Windows
{
internal sealed class ProcessCreationOptions
@ -6,6 +8,8 @@ namespace Dalamud.Bootstrap.Windows
public string? CommandLine { get; set; } = null;
public IEnumerable<KeyValuePair<string, string>>? Environments { get; set; } = null;
public bool CreateSuspended { get; set; }
}
}