46bdc2ac33
finally fixed threading issue (which actually had to do with IW4x log outputs being out of sync (not an issue with my code). What a lot of headache over something that wasn't my fault.
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>
|
|
bool AddEvent(GameEvent gameEvent);
|
|
}
|
|
}
|