mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 05:47:43 +01:00
WIP dalamud.launcher rewrite
This commit is contained in:
parent
6cdbfd452a
commit
3f78ca5b81
409 changed files with 367 additions and 273916 deletions
24
Dalamud.Injector/DalamudLauncherOptions.cs
Normal file
24
Dalamud.Injector/DalamudLauncherOptions.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Dalamud.Injector
|
||||
{
|
||||
public sealed class DalamudLauncherOptions
|
||||
{
|
||||
public static DalamudLauncherOptions Default => new DalamudLauncherOptions
|
||||
{
|
||||
RootDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Dalamud"),
|
||||
BinaryDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Dalamud", "bin"),
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string RootDirectory { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string BinaryDirectory { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue