This commit is contained in:
Ottermandias 2023-03-17 14:05:05 +01:00
parent 3fc724b7ee
commit 2670ba52c1
2 changed files with 8 additions and 1 deletions

View file

@ -22,9 +22,17 @@ public class CommunicatorService : IDisposable
/// </list> </summary>
public readonly EventWrapper<Mod.TemporaryMod, bool, bool> TemporaryGlobalModChange = new(nameof(TemporaryGlobalModChange));
/// <summary> <list type="number">
/// <item>Parameter is the type of change. </item>
/// <item>Parameter is the affected mod. </item>
/// <item>Parameter is either null or the old name of the mod. </item>
/// </list> </summary>
public readonly EventWrapper<ModDataChangeType, IModReadable, string?> ModMetaChange = new(nameof(ModMetaChange));
public void Dispose()
{
CollectionChange.Dispose();
TemporaryGlobalModChange.Dispose();
ModMetaChange.Dispose();
}
}

View file

@ -4,7 +4,6 @@ using Dalamud.Game.ClientState;
using Dalamud.Game.ClientState.Objects;
using Dalamud.Game.Gui;
using Dalamud.Plugin;
using OtterGui.Classes;
using Penumbra.GameData;
using Penumbra.GameData.Actors;
using Penumbra.GameData.Data;