2018-04-26 01:13:04 -05: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 12:40:29 -05:00
|
|
|
|
void AddEvent(GameEvent gameEvent);
|
2018-04-26 01:13:04 -05:00
|
|
|
|
}
|
|
|
|
|
}
|