using System; using System.Collections.Generic; using System.Text; namespace Dalamud.Bootstrap { public sealed class GameProcessCreationOptions { public string ImagePath { get; set; } = null!; public IList? Arguments { get; set; } public IDictionary? Environments { get; set; } public bool CreateSuspended { get; set; } } }