namespace PhoenixLib.Events { public interface IEventProcessor where T : IEvent { void Handle(T e); } }