mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-11 02:24:36 +01:00
ughhhhhhhhhhhhhhhhh
This commit is contained in:
parent
380c8732c6
commit
4042d138b2
11 changed files with 321 additions and 301 deletions
17
Dalamud.Bootstrap/GameProcessCreationOptions.cs
Normal file
17
Dalamud.Bootstrap/GameProcessCreationOptions.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue