cfbacabb4a
jint version downgraded for better stability (also locked the engine instance as it's not thread safe) updated readme remove vpn detection from application configuration as it's now in a seperate plugin defaulted webfront bind URl to all interfaces readd the custom say name added visibility percentage to AC
19 lines
476 B
C#
19 lines
476 B
C#
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>
|
|
void AddEvent(GameEvent gameEvent);
|
|
}
|
|
}
|