mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
Magic the magic happen
This commit is contained in:
parent
84769ae5b7
commit
658eedca37
188 changed files with 10329 additions and 3549 deletions
|
|
@ -1,12 +1,15 @@
|
|||
using System;
|
||||
|
||||
using Dalamud.Game;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Dalamud
|
||||
{
|
||||
/// <summary>
|
||||
/// Class containing information needed to initialize Dalamud.
|
||||
/// Struct containing information needed to initialize Dalamud.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public sealed class DalamudStartInfo
|
||||
public struct DalamudStartInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// The working directory of the XIVLauncher installations.
|
||||
|
|
@ -41,7 +44,8 @@ namespace Dalamud
|
|||
/// <summary>
|
||||
/// The current game version code.
|
||||
/// </summary>
|
||||
public string GameVersion;
|
||||
[JsonConverter(typeof(GameVersionConverter))]
|
||||
public GameVersion GameVersion;
|
||||
|
||||
/// <summary>
|
||||
/// Whether or not market board information should be uploaded by default.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue