예제 #1
0
 //更新玩家拥有过的麻将馆的信息
 void OnMyParlorUpdate(Network.Message.NetMsg.ParlorInfoDef msg)
 {
     if (ParlorShowPanel != null)
     {
         ParlorShowPanel.UpdateMyParlorPanel(msg);
     }
 }
예제 #2
0
 //更新玩家的麻将馆的信息
 public void UpdateMyParlor(Network.Message.NetMsg.ParlorInfoDef msg)
 {
     if (OnMyParlorPanelUpdate != null)
     {
         OnMyParlorPanelUpdate(msg);
     }
 }