mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Seperated the application back into a seperate project
webfront is just a library now
This commit is contained in:
11
SharedLibraryCore/Interfaces/IEventApi.cs
Normal file
11
SharedLibraryCore/Interfaces/IEventApi.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using SharedLibraryCore.Dtos;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
public interface IEventApi
|
||||
{
|
||||
void OnServerEvent(object sender, Event E);
|
||||
Queue<EventInfo> GetEvents();
|
||||
}
|
||||
}
|
@ -1,7 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using SharedLibraryCore.Objects;
|
||||
using SharedLibraryCore.Services;
|
||||
using System.Threading.Tasks;
|
||||
using SharedLibraryCore.Configuration;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
@ -21,5 +22,6 @@ namespace SharedLibraryCore.Interfaces
|
||||
AliasService GetAliasService();
|
||||
PenaltyService GetPenaltyService();
|
||||
IDictionary<int, Player> GetPrivilegedClients();
|
||||
IEventApi GetEventApi();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user