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