* @param fadeDuration the amount of time to spend fading in each card
*/
public void setHand (int size, long fadeDuration)
{
// fill hand will null entries to signify unknown cards
Hand hand = new Hand();
for (int ii = 0; ii < size; ii++) {
hand.add(null);
}
setHand(hand, fadeDuration);
}