add ipc to get handled addresses

This commit is contained in:
rootdarkarchon 2024-03-03 12:55:42 +01:00
parent 504e1003f4
commit 3bf5cf21ed
5 changed files with 46 additions and 15 deletions

View file

@ -78,7 +78,8 @@ public sealed class Plugin : IDalamudPlugin
collection.AddSingleton<DrawEntityFactory>();
collection.AddSingleton((s) => new IpcProvider(s.GetRequiredService<ILogger<IpcProvider>>(),
pluginInterface,
s.GetRequiredService<MareCharaFileManager>(), s.GetRequiredService<DalamudUtilService>()));
s.GetRequiredService<MareCharaFileManager>(), s.GetRequiredService<DalamudUtilService>(),
s.GetRequiredService<MareMediator>()));
collection.AddSingleton<SelectPairForTagUi>();
collection.AddSingleton((s) => new EventAggregator(pluginInterface.ConfigDirectory.FullName,
s.GetRequiredService<ILogger<EventAggregator>>(), s.GetRequiredService<MareMediator>()));