示例#1
0
文件: UILevel.cs 项目: moto2002/moba
 public bool GetLevelData()
 {
     if (CheckMapData())
     {
         openType = OpenLevelType.GwtWay;
         ClientSendDataMgr.GetSingle().GetBattleSend().SendQueryWorldMap();//获取世界副本
         return(false);
     }
     return(true);
 }
示例#2
0
文件: UILevel.cs 项目: moto2002/moba
 protected override void SetUI(params object[] uiParams)
 {
     if (uiParams.Length > 0)
     {
         openType = (OpenLevelType)uiParams[0];
         if (uiParams.Length > 1)
         {
             taskOpen = true;
             mapid    = (int)uiParams[1];
         }
     }
     base.SetUI(uiParams);
 }