mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
17 lines
409 B
C#
17 lines
409 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 IDictionary<string, string> Arguments { get; set; }
|
|
|
|
public IDictionary<string, string>? Environments { get; set; }
|
|
|
|
public bool CreateSuspended { get; set; }
|
|
}
|
|
}
|