IEvent.cs 87 B

1234567
  1. namespace Common.Event
  2. {
  3. public interface IEvent
  4. {
  5. void Run(Env env);
  6. }
  7. }