SystemMessage.cs 790 B

1234567891011121314151617181920212223242526272829303132
  1. using DeepCore.IO;
  2. namespace DeepMMO.Server.SystemMessage
  3. {
  4. /// <summary>
  5. /// 由系统发出关闭服务器协议,收到此协议后,Connector和Gate不在处理新的链接,并且将现有所有链接下线。
  6. /// </summary>
  7. public class SystemShutdownNotify : ISerializable
  8. {
  9. public string reason;
  10. }
  11. public class SystemGateReloadServerList : ISerializable
  12. {
  13. }
  14. /// <summary>
  15. /// 由系统发出允许正常玩家登陆。
  16. /// </summary>
  17. public class SystemGMServerOpenNotify : ISerializable
  18. {
  19. }
  20. /// <summary>
  21. /// 由系统发出所有静态服务已启动完毕。
  22. /// </summary>
  23. public class SystemStaticServicesStartedNotify : ISerializable
  24. {
  25. }
  26. }