2018-04-08 14:48:40 -04:00
|
|
|
|
using SharedLibraryCore.Dtos;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IEventApi
|
|
|
|
|
{
|
2018-04-13 02:32:30 -04:00
|
|
|
|
void OnServerEvent(object sender, GameEvent E);
|
2018-04-08 14:48:40 -04:00
|
|
|
|
Queue<EventInfo> GetEvents();
|
|
|
|
|
}
|
|
|
|
|
}
|