public void addPlayer(Player p) { if (cnt == 25) cnt = 0; players[cnt++] = p; }
public void setPlayer(Player p, int i) { players[i] = p; }