- pickColor() - Method in interface uno.Player
-
Method that picks the new color if a Wild card has been played.
- play() - Method in class uno.Game
-
Plays one game of Uno with the players given in
the constructor.
- Player - Interface in uno
-
Interface for Uno players.
- playerDraws(int) - Method in interface uno.Player
-
Method used to inform classes implementing the Player
interface that the player at the given index has just drawn a
card.
- playerPicks(ColoredCard.Color) - Method in interface uno.Player
-
Method used to inform classes implementing the Player
interface which color has been chosen after a player has played
a Wild card
- playerPlays(int, Card) - Method in interface uno.Player
-
Method used to inform classes implementing the Player
interface that the player at the given index has just played a
particular card.