267e0b8cbe
reenable tekno support address vagrant thread issue refactor game log reader creation to follow better practices fix bot issues/address how guids are generated for bots/none provided
16 lines
490 B
C#
16 lines
490 B
C#
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// handles 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="manager">application manager instance</param>
|
|
/// <param name="gameEvent">game event</param>
|
|
void HandleEvent(IManager manager, GameEvent gameEvent);
|
|
}
|
|
}
|