This commit is contained in:
Ottermandias 2023-06-20 18:54:33 +02:00
parent d1d369a56b
commit 65ce391051
19 changed files with 757 additions and 158 deletions

View file

@ -10,11 +10,11 @@ namespace Glamourer.Interop;
public unsafe class UpdateSlotService : IDisposable
{
public readonly UpdatedSlot Event;
public readonly SlotUpdating Event;
public UpdateSlotService(UpdatedSlot updatedSlot)
public UpdateSlotService(SlotUpdating slotUpdating)
{
Event = updatedSlot;
Event = slotUpdating;
SignatureHelper.Initialise(this);
_flagSlotForUpdateHook.Enable();
}