12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using GFGGame;
- namespace ET
- {
- public class DisConnectedCompnentDestroy : DestroySystem<DisConnectedCompnent>
- {
- public override void Destroy(DisConnectedCompnent self)
- {
- Alert.Show("服务器连接已断开!")
- .SetLeftButton(true, "返回登录",(obj) =>
- {
- GameController.QuitToLoginView(false);
- });
- }
- }
- public static class DisConnectedCompnentSystem
- {
-
- }
- }
|