IW4M-Admin/Tests/ApplicationTests/Mocks/EventHandler.cs

17 lines
361 B
C#
Raw Normal View History

using SharedLibraryCore;
using SharedLibraryCore.Interfaces;
using System.Collections.Generic;
namespace ApplicationTests.Mocks
{
class MockEventHandler : IEventHandler
{
public IList<GameEvent> Events = new List<GameEvent>();
public void AddEvent(GameEvent gameEvent)
{
Events.Add(gameEvent);
}
}
}