mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 07:17:45 +01:00
Initial commit
This commit is contained in:
commit
ac838687f8
157 changed files with 27905 additions and 0 deletions
24
Dalamud/DalamudStartInfo.cs
Normal file
24
Dalamud/DalamudStartInfo.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using Dalamud.DiscordBot;
|
||||
|
||||
namespace Dalamud {
|
||||
[Serializable]
|
||||
public sealed class DalamudStartInfo {
|
||||
public string WorkingDirectory;
|
||||
public string PluginDirectory;
|
||||
public string DefaultPluginDirectory;
|
||||
public ClientLanguage Language;
|
||||
|
||||
public DiscordFeatureConfiguration DiscordFeatureConfig { get; set; }
|
||||
|
||||
public bool OptOutMbCollection { get; set; } = false;
|
||||
}
|
||||
|
||||
public enum ClientLanguage
|
||||
{
|
||||
Japanese,
|
||||
English,
|
||||
German,
|
||||
French
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue