mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-19 22:17:44 +01:00
Cleanup.
This commit is contained in:
parent
d3bdb8d3d9
commit
5725d80b81
3 changed files with 13 additions and 24 deletions
|
|
@ -1,13 +1,7 @@
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using Dalamud.Interface;
|
|
||||||
using Dalamud.Interface.Internal.Notifications;
|
|
||||||
using Dalamud.Logging;
|
|
||||||
using Dalamud.Utility;
|
|
||||||
using Glamourer.Designs;
|
using Glamourer.Designs;
|
||||||
using Glamourer.Interop.Penumbra;
|
using Glamourer.Interop.Penumbra;
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
using OtterGui;
|
|
||||||
using OtterGui.Raii;
|
|
||||||
|
|
||||||
namespace Glamourer.Gui.Tabs.DesignTab;
|
namespace Glamourer.Gui.Tabs.DesignTab;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,5 @@
|
||||||
using System;
|
using Glamourer.Interop.Penumbra;
|
||||||
using System.Numerics;
|
|
||||||
using Dalamud.Interface;
|
|
||||||
using Glamourer.Interop.Penumbra;
|
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
using OtterGui;
|
|
||||||
using OtterGui.Classes;
|
|
||||||
using OtterGui.Raii;
|
using OtterGui.Raii;
|
||||||
using OtterGui.Widgets;
|
using OtterGui.Widgets;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -298,19 +298,19 @@ public unsafe class PenumbraService : IDisposable
|
||||||
_creatingCharacterBase.Enable();
|
_creatingCharacterBase.Enable();
|
||||||
_createdCharacterBase.Enable();
|
_createdCharacterBase.Enable();
|
||||||
_modSettingChanged.Enable();
|
_modSettingChanged.Enable();
|
||||||
_drawObjectInfo = Ipc.GetDrawObjectInfo.Subscriber(_pluginInterface);
|
_drawObjectInfo = Ipc.GetDrawObjectInfo.Subscriber(_pluginInterface);
|
||||||
_cutsceneParent = Ipc.GetCutsceneParentIndex.Subscriber(_pluginInterface);
|
_cutsceneParent = Ipc.GetCutsceneParentIndex.Subscriber(_pluginInterface);
|
||||||
_redrawSubscriber = Ipc.RedrawObjectByIndex.Subscriber(_pluginInterface);
|
_redrawSubscriber = Ipc.RedrawObjectByIndex.Subscriber(_pluginInterface);
|
||||||
_objectCollection = Ipc.GetCollectionForObject.Subscriber(_pluginInterface);
|
_objectCollection = Ipc.GetCollectionForObject.Subscriber(_pluginInterface);
|
||||||
_getMods = Ipc.GetMods.Subscriber(_pluginInterface);
|
_getMods = Ipc.GetMods.Subscriber(_pluginInterface);
|
||||||
_currentCollection = Ipc.GetCollectionForType.Subscriber(_pluginInterface);
|
_currentCollection = Ipc.GetCollectionForType.Subscriber(_pluginInterface);
|
||||||
_getCurrentSettings = Ipc.GetCurrentModSettings.Subscriber(_pluginInterface);
|
_getCurrentSettings = Ipc.GetCurrentModSettings.Subscriber(_pluginInterface);
|
||||||
_getAllCollections = Ipc.GetCollections.Subscriber(_pluginInterface);
|
_getAllCollections = Ipc.GetCollections.Subscriber(_pluginInterface);
|
||||||
_setCurrentCollection = Ipc.SetCollectionForObject.Subscriber( _pluginInterface);
|
_setCurrentCollection = Ipc.SetCollectionForObject.Subscriber( _pluginInterface);
|
||||||
_setMod = Ipc.TrySetMod.Subscriber(_pluginInterface);
|
_setMod = Ipc.TrySetMod.Subscriber(_pluginInterface);
|
||||||
_setModPriority = Ipc.TrySetModPriority.Subscriber(_pluginInterface);
|
_setModPriority = Ipc.TrySetModPriority.Subscriber(_pluginInterface);
|
||||||
_setModSetting = Ipc.TrySetModSetting.Subscriber(_pluginInterface);
|
_setModSetting = Ipc.TrySetModSetting.Subscriber(_pluginInterface);
|
||||||
_setModSettings = Ipc.TrySetModSettings.Subscriber(_pluginInterface);
|
_setModSettings = Ipc.TrySetModSettings.Subscriber(_pluginInterface);
|
||||||
Available = true;
|
Available = true;
|
||||||
_penumbraReloaded.Invoke();
|
_penumbraReloaded.Invoke();
|
||||||
Glamourer.Log.Debug("Glamourer attached to Penumbra.");
|
Glamourer.Log.Debug("Glamourer attached to Penumbra.");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue