Esempio n. 1
0
 public Player GetPlayerRoom(int netId)
 {
     return(DictExtensions.GetRefVal(netId2PlayerRoom, netId));
 }
Esempio n. 2
0
 public Player GetPlayerLobby(int netId)
 {
     return(DictExtensions.GetRefVal(netId2Player, netId));
 }
Esempio n. 3
0
 public IRoom GetRoom(int roomId)
 {
     return(DictExtensions.GetRefVal(roomId2Room, roomId));
 }
Esempio n. 4
0
 public Player GetPlayer(long playerId)
 {
     return(DictExtensions.GetRefVal(playerID2Player, playerId));
 }
Esempio n. 5
0
 public List <IRoom> GetRooms(int roomType)
 {
     return(DictExtensions.GetRefVal(gameId2Rooms, roomType));
 }