dboxes[whereAmI].setTurn(true);
myTurn = true;
}
public void yourTurnToPass(int howmany, int who) {
PassWindow pw = new PassWindow(this, hand, howmany,
((who >= 0 && who < dboxes.length) ? dboxes[who]
.getPlayerName() : "nobody"));
while ((pass = pw.waitForAnswer(100000)) == null && alive)
;
if (alive)
callbacks.submitPass(pass);
}