Dalamud/Dalamud.Bootstrap/GameProcessCreationOptions.cs
2020-04-09 02:25:25 +09:00

17 lines
396 B
C#

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