IEventModule.cs 172 B

123456789
  1. namespace XGame.Framework
  2. {
  3. /// <summary>
  4. /// 事件总线
  5. /// </summary>
  6. public interface IEventModule : IEventListener, IEventDispatcher
  7. {
  8. }
  9. }