| | |
| | | } |
| | | |
| | | //本次登陆不再提示, toggle的确认类型,方便外部调用 |
| | | static Dictionary<int, bool> toggleCheckDict = new Dictionary<int, bool>(); |
| | | public enum ToggleCheckType |
| | | { |
| | | Auction = 0, //拍卖行 |
| | | } |
| | | public static Dictionary<ToggleCheckType, bool> toggleCheckDict = new Dictionary<ToggleCheckType, bool>(); |
| | | |
| | | public static void ToggleConfirmCancelByType(int type, string fullTip, Action func) |
| | | |
| | | public static void ToggleConfirmCancelByType(ToggleCheckType type, string fullTip, Action func) |
| | | { |
| | | if (toggleCheckDict.ContainsKey(type) && toggleCheckDict[type]) |
| | | { |
| | |
| | | |
| | | } |
| | | |
| | | public enum ToggleCheckType |
| | | { |
| | | Auction = 0, //拍卖行 |
| | | WashCancel = 1, //洗练取消 |
| | | } |
| | | |
| | | |