diff --git a/Dalamud/Game/Config/ConfigType.cs b/Dalamud/Game/Config/ConfigType.cs new file mode 100644 index 000000000..731b26cc8 --- /dev/null +++ b/Dalamud/Game/Config/ConfigType.cs @@ -0,0 +1,32 @@ +namespace Dalamud.Game.Config; + +/// +/// Types of options used by the game config. +/// +public enum ConfigType +{ + /// + /// Unused config index. + /// + Unused = 0, + + /// + /// A label entry with no value. + /// + Category = 1, + + /// + /// A config entry with an unsigned integer value. + /// + UInt = 2, + + /// + /// A config entry with a float value. + /// + Float = 3, + + /// + /// A config entry with a string value. + /// + String = 4, +} diff --git a/Dalamud/Game/Config/SystemConfigOption.cs b/Dalamud/Game/Config/SystemConfigOption.cs index 40d6b2fc9..70982311a 100644 --- a/Dalamud/Game/Config/SystemConfigOption.cs +++ b/Dalamud/Game/Config/SystemConfigOption.cs @@ -1,6 +1,4 @@ -using FFXIVClientStructs.FFXIV.Common.Configuration; - -namespace Dalamud.Game.Config; +namespace Dalamud.Game.Config; // ReSharper disable InconsistentNaming // ReSharper disable IdentifierTypo diff --git a/Dalamud/Game/Config/UiConfigOption.cs b/Dalamud/Game/Config/UiConfigOption.cs index 98fb4502d..82f823ffe 100644 --- a/Dalamud/Game/Config/UiConfigOption.cs +++ b/Dalamud/Game/Config/UiConfigOption.cs @@ -1,6 +1,4 @@ -using FFXIVClientStructs.FFXIV.Common.Configuration; - -namespace Dalamud.Game.Config; +namespace Dalamud.Game.Config; // ReSharper disable InconsistentNaming // ReSharper disable IdentifierTypo diff --git a/Dalamud/Game/Config/UiControlOption.cs b/Dalamud/Game/Config/UiControlOption.cs index 742df6b9f..5d36ee84d 100644 --- a/Dalamud/Game/Config/UiControlOption.cs +++ b/Dalamud/Game/Config/UiControlOption.cs @@ -1,6 +1,4 @@ -using FFXIVClientStructs.FFXIV.Common.Configuration; - -namespace Dalamud.Game.Config; +namespace Dalamud.Game.Config; // ReSharper disable InconsistentNaming // ReSharper disable IdentifierTypo