From 102318d74588125a15df01ebebe09bc1b0cafd9f Mon Sep 17 00:00:00 2001 From: Cara Date: Thu, 5 Oct 2023 06:18:18 +1030 Subject: [PATCH] Add new config options (#1458) --- Dalamud/Game/Config/UiConfigOption.cs | 63 +++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/Dalamud/Game/Config/UiConfigOption.cs b/Dalamud/Game/Config/UiConfigOption.cs index 82f823ffe..aaa86230a 100644 --- a/Dalamud/Game/Config/UiConfigOption.cs +++ b/Dalamud/Game/Config/UiConfigOption.cs @@ -3473,4 +3473,67 @@ public enum UiConfigOption /// [GameConfigOption("ItemInventryStoreEnd", ConfigType.UInt)] ItemInventryStoreEnd, + + /// + /// System option with the internal name HotbarXHBEditEnable. + /// This option is a UInt. + /// + [GameConfigOption("HotbarXHBEditEnable", ConfigType.UInt)] + HotbarXHBEditEnable, + + /// + /// System option with the internal name NamePlateDispJobIconInPublicParty. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIconInPublicParty", ConfigType.UInt)] + NamePlateDispJobIconInPublicParty, + + /// + /// System option with the internal name NamePlateDispJobIconInPublicOther. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIconInPublicOther", ConfigType.UInt)] + NamePlateDispJobIconInPublicOther, + + /// + /// System option with the internal name NamePlateDispJobIconInInstanceParty. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIconInInstanceParty", ConfigType.UInt)] + NamePlateDispJobIconInInstanceParty, + + /// + /// System option with the internal name NamePlateDispJobIconInInstanceOther. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIconInInstanceOther", ConfigType.UInt)] + NamePlateDispJobIconInInstanceOther, + + /// + /// System option with the internal name CCProgressAllyFixLeftSide. + /// This option is a UInt. + /// + [GameConfigOption("CCProgressAllyFixLeftSide", ConfigType.UInt)] + CCProgressAllyFixLeftSide, + + /// + /// System option with the internal name CCMapAllyFixLeftSide. + /// This option is a UInt. + /// + [GameConfigOption("CCMapAllyFixLeftSide", ConfigType.UInt)] + CCMapAllyFixLeftSide, + + /// + /// System option with the internal name DispCCCountDown. + /// This option is a UInt. + /// + [GameConfigOption("DispCCCountDown", ConfigType.UInt)] + DispCCCountDown, + + /// + /// System option with the internal name TelepoCategoryType. + /// This option is a UInt. + /// + [GameConfigOption("TelepoCategoryType", ConfigType.UInt)] + TelepoCategoryType, }