1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-12 16:18:07 -05:00

add ServerCommandRequestExecuteEvent implementation

This commit is contained in:
RaidMax
2023-04-09 14:07:30 -05:00
parent 892d2c8fc5
commit e3bbb048b6
8 changed files with 109 additions and 42 deletions

View File

@ -1,8 +0,0 @@
using System;
namespace SharedLibraryCore.Events.Management;
public class NotifyAfterDelayCompleteEvent : ManagementEvent
{
public Delegate Action { get; init; }
}

View File

@ -1,9 +0,0 @@
using System;
namespace SharedLibraryCore.Events.Management;
public class NotifyAfterDelayRequestEvent : ManagementEvent
{
public int DelayMs { get; init; }
public Action Action { get; init; }
}