namespace LanLib.EventManager { public interface IClearableEventManager { /// /// Clears listeners from specified event. /// /// The type of event to remove listeners from. Must be a struct. public void ClearEvent() where T : struct; } }