Exemple #1
0
 public void RemoveClient(ClientReference client)
 {
     client.DetachSlot();
     client.clientStatus = ClientReference.ClientStatus.Lobby;
     client.status       = BrickManDesc.STATUS.PLAYER_WAITING;
     client.deaths       = 0;
     client.kills        = 0;
     client.assists      = 0;
     client.score        = 0;
     clientList.Remove(client);
     room.CurPlayer = clientList.Count;
 }