示例#1
0
 /** All cities in a server with "maximum" recent items.
  *
  * 获取城市状态列表
  *
  * Return: Array of War Object
  */
 private static byte[] GetCities(Credential credential, BigInteger serverId)
 {
     byte[] body = Op.Void();
     for (int i = 0; i < Const.numCities; i++)
     {
         body.AddSeg(RW.FindDataCity(serverId, i));
     }
     return(NuTP.RespDataSucWithBody(body));
 }