namespace R0bbie.Timeline.Events { /// /// Interface to create custom event listeners inside another classes /// public interface IGameEventListener { /// /// Action to do when the event is raised /// public void OnEventRaised(); } }