mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge remote-tracking branch 'origin/master' into net8-rollup
This commit is contained in:
commit
a2cc9ffe34
11 changed files with 148 additions and 77 deletions
|
|
@ -17,6 +17,11 @@ public record DalamudStartInfo
|
|||
// ignored
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Dalamud load method.
|
||||
/// </summary>
|
||||
public LoadMethod LoadMethod { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the working directory of the XIVLauncher installations.
|
||||
/// </summary>
|
||||
|
|
|
|||
17
Dalamud.Common/LoadMethod.cs
Normal file
17
Dalamud.Common/LoadMethod.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
namespace Dalamud.Common;
|
||||
|
||||
/// <summary>
|
||||
/// Enum describing the method Dalamud has been loaded.
|
||||
/// </summary>
|
||||
public enum LoadMethod
|
||||
{
|
||||
/// <summary>
|
||||
/// Load Dalamud by rewriting the games entrypoint.
|
||||
/// </summary>
|
||||
Entrypoint,
|
||||
|
||||
/// <summary>
|
||||
/// Load Dalamud via DLL-injection.
|
||||
/// </summary>
|
||||
DllInject,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue