diff --git a/Glamourer/Api/GlamourerIpc.cs b/Glamourer/Api/GlamourerIpc.cs index 79d45db..36157dc 100644 --- a/Glamourer/Api/GlamourerIpc.cs +++ b/Glamourer/Api/GlamourerIpc.cs @@ -10,34 +10,34 @@ namespace Glamourer.Api; public class GlamourerIpc : IDisposable { - public const int CurrentApiVersion = 0; - public const string LabelProviderApiVersion = "Glamourer.ApiVersion"; - public const string LabelProviderGetAllCustomization = "Glamourer.GetAllCustomization"; - public const string LabelProviderGetAllCustomizationFromCharacter = "Glamourer.GetAllCustomizationFromCharacter"; - public const string LabelProviderApplyAll = "Glamourer.ApplyAll"; - public const string LabelProviderApplyAllToCharacter = "Glamourer.ApplyAllToCharacter"; - public const string LabelProviderApplyOnlyEquipment = "Glamourer.ApplyOnlyEquipment"; - public const string LabelProviderApplyOnlyEquipmentToCharacter = "Glamourer.ApplyOnlyEquipmentToCharacter"; - public const string LabelProviderApplyOnlyCustomization = "Glamourer.ApplyOnlyCustomization"; + public const int CurrentApiVersion = 0; + public const string LabelProviderApiVersion = "Glamourer.ApiVersion"; + public const string LabelProviderGetAllCustomization = "Glamourer.GetAllCustomization"; + public const string LabelProviderGetAllCustomizationFromCharacter = "Glamourer.GetAllCustomizationFromCharacter"; + public const string LabelProviderApplyAll = "Glamourer.ApplyAll"; + public const string LabelProviderApplyAllToCharacter = "Glamourer.ApplyAllToCharacter"; + public const string LabelProviderApplyOnlyEquipment = "Glamourer.ApplyOnlyEquipment"; + public const string LabelProviderApplyOnlyEquipmentToCharacter = "Glamourer.ApplyOnlyEquipmentToCharacter"; + public const string LabelProviderApplyOnlyCustomization = "Glamourer.ApplyOnlyCustomization"; public const string LabelProviderApplyOnlyCustomizationToCharacter = "Glamourer.ApplyOnlyCustomizationToCharacter"; - public const string LabelProviderRevert = "Glamourer.Revert"; - public const string LabelProviderRevertCharacter = "Glamourer.RevertCharacter"; + public const string LabelProviderRevert = "Glamourer.Revert"; + public const string LabelProviderRevertCharacter = "Glamourer.RevertCharacter"; - private readonly ClientState _clientState; - private readonly ObjectTable _objectTable; + private readonly ClientState _clientState; + private readonly ObjectTable _objectTable; private readonly DalamudPluginInterface _pluginInterface; - internal ICallGateProvider? ProviderGetAllCustomization; - internal ICallGateProvider? ProviderGetAllCustomizationFromCharacter; - internal ICallGateProvider? ProviderApplyAll; + internal ICallGateProvider? ProviderGetAllCustomization; + internal ICallGateProvider? ProviderGetAllCustomizationFromCharacter; + internal ICallGateProvider? ProviderApplyAll; internal ICallGateProvider? ProviderApplyAllToCharacter; - internal ICallGateProvider? ProviderApplyOnlyCustomization; + internal ICallGateProvider? ProviderApplyOnlyCustomization; internal ICallGateProvider? ProviderApplyOnlyCustomizationToCharacter; - internal ICallGateProvider? ProviderApplyOnlyEquipment; + internal ICallGateProvider? ProviderApplyOnlyEquipment; internal ICallGateProvider? ProviderApplyOnlyEquipmentToCharacter; - internal ICallGateProvider? ProviderRevert; - internal ICallGateProvider? ProviderRevertCharacter; - internal ICallGateProvider? ProviderGetApiVersion; + internal ICallGateProvider? ProviderRevert; + internal ICallGateProvider? ProviderRevertCharacter; + internal ICallGateProvider? ProviderGetApiVersion; public GlamourerIpc(ClientState clientState, ObjectTable objectTable, DalamudPluginInterface pluginInterface) {