2018-04-26 02:13:04 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This class handle games events (from log, manual events, etc)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IEventHandler
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add a game event event to the queue to be processed
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gameEvent">Game event</param>
|
2018-09-04 13:40:29 -04:00
|
|
|
|
void AddEvent(GameEvent gameEvent);
|
2018-04-26 02:13:04 -04:00
|
|
|
|
}
|
|
|
|
|
}
|