Switch to dalamuds texture cache

This commit is contained in:
Infi
2024-07-25 15:57:21 +02:00
parent a8dea26bf2
commit c9902dc28b
5 changed files with 27 additions and 93 deletions
-3
View File
@@ -53,7 +53,6 @@ public sealed class Plugin : IDalamudPlugin
internal Commands Commands { get; }
internal ChatCommon Common { get; }
internal TextureCache TextureCache { get; }
internal GameFunctions.GameFunctions Functions { get; }
internal MessageManager MessageManager { get; }
internal IpcManager Ipc { get; }
@@ -80,7 +79,6 @@ public sealed class Plugin : IDalamudPlugin
Commands = new Commands(this);
Common = new ChatCommon();
TextureCache = new TextureCache();
Functions = new GameFunctions.GameFunctions(this);
Ipc = new IpcManager();
ExtraChat = new ExtraChat(this);
@@ -158,7 +156,6 @@ public sealed class Plugin : IDalamudPlugin
Ipc?.Dispose();
MessageManager?.DisposeAsync().AsTask().Wait();
Functions?.Dispose();
TextureCache?.Dispose();
Commands?.Dispose();
EmoteCache.Dispose();