- Play - Interface in game_backend
-
Represents a generic game of Cards.
- Player - Class in game_backend
-
Represents a player that can interact with a game of cards
- Player(int) - Constructor for class game_backend.Player
-
Constructor of Player that receives as argument the number of credits that player will
have at his disposal
- player - Variable in class game_frontend.Match
-
- PlayVariant - Interface in game_backend
-
Represents a generic variant of Poker.
- PokerRules - Class in game_backend
-
Abstract class that contains generic Poker rules.
- PokerRules() - Constructor for class game_backend.PokerRules
-
- populateWithComutations(int[]) - Method in class game_backend.PokerRules
-
Computes all combinations that can end being a candidate straight.
- prepareRound() - Method in class game_backend.Game
-
Orders the deck to shuffle
- prepareRound() - Method in interface game_backend.Play
-