Exemplo n.º 1
0
 public int getMaxPlayerCount() {
   int i = 0;
   for (TeamInfo ti : teams) {
     i += ti.getMaxPlayerCount();
   }
   return i;
 }