re-enable claims permission add/remove

This commit is contained in:
RaidMax
2020-05-22 21:38:38 -05:00
parent 4afd1f3cdc
commit 1241ac459e
4 changed files with 17 additions and 18 deletions

View File

@ -5,6 +5,7 @@ using SharedLibraryCore.Configuration;
using SharedLibraryCore.Database.Models;
using System.Threading;
using System.Collections;
using System;
namespace SharedLibraryCore.Interfaces
{
@ -80,5 +81,9 @@ namespace SharedLibraryCore.Interfaces
/// </summary>
/// <param name="name">name of command</param>
void RemoveCommandByName(string name);
/// <summary>
/// event executed when event has finished executing
/// </summary>
event EventHandler<GameEvent> OnGameEventExecuted;
}
}