Added Profile.GetProfileList, Profile.EnableByUniqueId, Profile.DisableByUniqueId IPC endpoints
Co-authored-by: Limiana <5073202+Limiana@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using CustomizePlus.Core.Services;
|
||||
using CustomizePlus.Profiles;
|
||||
using Dalamud.Plugin;
|
||||
using ECommons.EzIpcManager;
|
||||
using OtterGui.Log;
|
||||
@@ -11,6 +12,7 @@ public partial class CustomizePlusIpc
|
||||
private readonly DalamudPluginInterface _pluginInterface;
|
||||
private readonly Logger _logger;
|
||||
private readonly HookingService _hookingService;
|
||||
private readonly ProfileManager _profileManager;
|
||||
|
||||
/// <summary>
|
||||
/// Shows if IPC failed to initialize or any other unrecoverable fatal error occured.
|
||||
@@ -20,11 +22,13 @@ public partial class CustomizePlusIpc
|
||||
public CustomizePlusIpc(
|
||||
DalamudPluginInterface pluginInterface,
|
||||
Logger logger,
|
||||
HookingService hookingService)
|
||||
HookingService hookingService,
|
||||
ProfileManager profileManager)
|
||||
{
|
||||
_pluginInterface = pluginInterface;
|
||||
_logger = logger;
|
||||
_hookingService = hookingService;
|
||||
_profileManager = profileManager;
|
||||
|
||||
EzIPC.Init(this, "CustomizePlus");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user