mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 12:44:16 +01:00
Use own ConfigType enum (#1319)
This commit is contained in:
parent
26152f8422
commit
c37d8a15fd
4 changed files with 35 additions and 9 deletions
32
Dalamud/Game/Config/ConfigType.cs
Normal file
32
Dalamud/Game/Config/ConfigType.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
namespace Dalamud.Game.Config;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Types of options used by the game config.
|
||||||
|
/// </summary>
|
||||||
|
public enum ConfigType
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unused config index.
|
||||||
|
/// </summary>
|
||||||
|
Unused = 0,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A label entry with no value.
|
||||||
|
/// </summary>
|
||||||
|
Category = 1,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A config entry with an unsigned integer value.
|
||||||
|
/// </summary>
|
||||||
|
UInt = 2,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A config entry with a float value.
|
||||||
|
/// </summary>
|
||||||
|
Float = 3,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A config entry with a string value.
|
||||||
|
/// </summary>
|
||||||
|
String = 4,
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
using FFXIVClientStructs.FFXIV.Common.Configuration;
|
namespace Dalamud.Game.Config;
|
||||||
|
|
||||||
namespace Dalamud.Game.Config;
|
|
||||||
|
|
||||||
// ReSharper disable InconsistentNaming
|
// ReSharper disable InconsistentNaming
|
||||||
// ReSharper disable IdentifierTypo
|
// ReSharper disable IdentifierTypo
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
using FFXIVClientStructs.FFXIV.Common.Configuration;
|
namespace Dalamud.Game.Config;
|
||||||
|
|
||||||
namespace Dalamud.Game.Config;
|
|
||||||
|
|
||||||
// ReSharper disable InconsistentNaming
|
// ReSharper disable InconsistentNaming
|
||||||
// ReSharper disable IdentifierTypo
|
// ReSharper disable IdentifierTypo
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
using FFXIVClientStructs.FFXIV.Common.Configuration;
|
namespace Dalamud.Game.Config;
|
||||||
|
|
||||||
namespace Dalamud.Game.Config;
|
|
||||||
|
|
||||||
// ReSharper disable InconsistentNaming
|
// ReSharper disable InconsistentNaming
|
||||||
// ReSharper disable IdentifierTypo
|
// ReSharper disable IdentifierTypo
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue