mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
D
This commit is contained in:
parent
3fc724b7ee
commit
2670ba52c1
2 changed files with 8 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue