mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-15 03:44:15 +01:00
add moodles integration (temporary)
This commit is contained in:
parent
8bfbf4b582
commit
e94a2a7565
13 changed files with 183 additions and 26 deletions
|
|
@ -7,13 +7,14 @@ public sealed partial class IpcManager : DisposableMediatorSubscriberBase
|
|||
{
|
||||
public IpcManager(ILogger<IpcManager> logger, MareMediator mediator,
|
||||
IpcCallerPenumbra penumbraIpc, IpcCallerGlamourer glamourerIpc, IpcCallerCustomize customizeIpc, IpcCallerHeels heelsIpc,
|
||||
IpcCallerHonorific honorificIpc) : base(logger, mediator)
|
||||
IpcCallerHonorific honorificIpc, IpcCallerMoodles moodlesIpc) : base(logger, mediator)
|
||||
{
|
||||
CustomizePlus = customizeIpc;
|
||||
Heels = heelsIpc;
|
||||
Glamourer = glamourerIpc;
|
||||
Penumbra = penumbraIpc;
|
||||
Honorific = honorificIpc;
|
||||
Moodles = moodlesIpc;
|
||||
|
||||
if (Initialized)
|
||||
{
|
||||
|
|
@ -39,6 +40,7 @@ public sealed partial class IpcManager : DisposableMediatorSubscriberBase
|
|||
public IpcCallerHeels Heels { get; init; }
|
||||
public IpcCallerGlamourer Glamourer { get; }
|
||||
public IpcCallerPenumbra Penumbra { get; }
|
||||
public IpcCallerMoodles Moodles { get; }
|
||||
|
||||
private void PeriodicApiStateCheck()
|
||||
{
|
||||
|
|
@ -48,5 +50,6 @@ public sealed partial class IpcManager : DisposableMediatorSubscriberBase
|
|||
Heels.CheckAPI();
|
||||
CustomizePlus.CheckAPI();
|
||||
Honorific.CheckAPI();
|
||||
Moodles.CheckAPI();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue