mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-21 15:54:59 +00:00
19 lines
536 B
C#
19 lines
536 B
C#
using Daybreak.Shared.Attributes;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "DXVK")]
|
|
[OptionsIgnore]
|
|
internal sealed class DXVKOptions
|
|
{
|
|
[JsonPropertyName(nameof(Version))]
|
|
[OptionSynchronizationIgnore]
|
|
[OptionIgnore]
|
|
public string? Version { get; set; }
|
|
|
|
[JsonPropertyName(nameof(Enabled))]
|
|
[OptionName(Name = "Enabled", Description = "If true, the launcher will also launch DXVK when launching GuildWars")]
|
|
public bool Enabled { get; set; }
|
|
}
|