IChainEvent.cs 167 B

12345678
  1. using System;
  2. namespace Blue
  3. {
  4. public interface IChainEvent : IEvent
  5. {
  6. //IChainEvent NextEvent<T>(Action<T> onEvent) where T : IEvent;
  7. }
  8. }