slimecing

a fighting game featuring slimes and swords
Log | Files | Refs | README

IGameEventListener.cs (142B)


      1 namespace Slimecing.SOEventSystem.Listeners
      2 {
      3     public interface IGameEventListener<T>
      4     {
      5         void OnEventRaised(T thing);
      6     }
      7 }