diff --git a/Glamourer/Gui/Tabs/DesignTab/CollectionAssociationTab.cs b/Glamourer/Gui/Tabs/DesignTab/CollectionAssociationTab.cs index 0eb47e4..6207ac3 100644 --- a/Glamourer/Gui/Tabs/DesignTab/CollectionAssociationTab.cs +++ b/Glamourer/Gui/Tabs/DesignTab/CollectionAssociationTab.cs @@ -1,13 +1,7 @@ using System.Numerics; -using Dalamud.Interface; -using Dalamud.Interface.Internal.Notifications; -using Dalamud.Logging; -using Dalamud.Utility; using Glamourer.Designs; using Glamourer.Interop.Penumbra; using ImGuiNET; -using OtterGui; -using OtterGui.Raii; namespace Glamourer.Gui.Tabs.DesignTab; diff --git a/Glamourer/Gui/Tabs/DesignTab/CollectionCombo.cs b/Glamourer/Gui/Tabs/DesignTab/CollectionCombo.cs index f8256d6..43e6b98 100644 --- a/Glamourer/Gui/Tabs/DesignTab/CollectionCombo.cs +++ b/Glamourer/Gui/Tabs/DesignTab/CollectionCombo.cs @@ -1,10 +1,5 @@ -using System; -using System.Numerics; -using Dalamud.Interface; -using Glamourer.Interop.Penumbra; +using Glamourer.Interop.Penumbra; using ImGuiNET; -using OtterGui; -using OtterGui.Classes; using OtterGui.Raii; using OtterGui.Widgets; diff --git a/Glamourer/Interop/Penumbra/PenumbraService.cs b/Glamourer/Interop/Penumbra/PenumbraService.cs index ca21648..46552db 100644 --- a/Glamourer/Interop/Penumbra/PenumbraService.cs +++ b/Glamourer/Interop/Penumbra/PenumbraService.cs @@ -298,19 +298,19 @@ public unsafe class PenumbraService : IDisposable _creatingCharacterBase.Enable(); _createdCharacterBase.Enable(); _modSettingChanged.Enable(); - _drawObjectInfo = Ipc.GetDrawObjectInfo.Subscriber(_pluginInterface); - _cutsceneParent = Ipc.GetCutsceneParentIndex.Subscriber(_pluginInterface); - _redrawSubscriber = Ipc.RedrawObjectByIndex.Subscriber(_pluginInterface); - _objectCollection = Ipc.GetCollectionForObject.Subscriber(_pluginInterface); - _getMods = Ipc.GetMods.Subscriber(_pluginInterface); - _currentCollection = Ipc.GetCollectionForType.Subscriber(_pluginInterface); - _getCurrentSettings = Ipc.GetCurrentModSettings.Subscriber(_pluginInterface); - _getAllCollections = Ipc.GetCollections.Subscriber(_pluginInterface); + _drawObjectInfo = Ipc.GetDrawObjectInfo.Subscriber(_pluginInterface); + _cutsceneParent = Ipc.GetCutsceneParentIndex.Subscriber(_pluginInterface); + _redrawSubscriber = Ipc.RedrawObjectByIndex.Subscriber(_pluginInterface); + _objectCollection = Ipc.GetCollectionForObject.Subscriber(_pluginInterface); + _getMods = Ipc.GetMods.Subscriber(_pluginInterface); + _currentCollection = Ipc.GetCollectionForType.Subscriber(_pluginInterface); + _getCurrentSettings = Ipc.GetCurrentModSettings.Subscriber(_pluginInterface); + _getAllCollections = Ipc.GetCollections.Subscriber(_pluginInterface); _setCurrentCollection = Ipc.SetCollectionForObject.Subscriber( _pluginInterface); - _setMod = Ipc.TrySetMod.Subscriber(_pluginInterface); - _setModPriority = Ipc.TrySetModPriority.Subscriber(_pluginInterface); - _setModSetting = Ipc.TrySetModSetting.Subscriber(_pluginInterface); - _setModSettings = Ipc.TrySetModSettings.Subscriber(_pluginInterface); + _setMod = Ipc.TrySetMod.Subscriber(_pluginInterface); + _setModPriority = Ipc.TrySetModPriority.Subscriber(_pluginInterface); + _setModSetting = Ipc.TrySetModSetting.Subscriber(_pluginInterface); + _setModSettings = Ipc.TrySetModSettings.Subscriber(_pluginInterface); Available = true; _penumbraReloaded.Invoke(); Glamourer.Log.Debug("Glamourer attached to Penumbra.");