- actualBet - Variable in class game_backend.Game
-
- actualBet - Variable in class game_frontend.Match
-
- addCard(Card) - Method in class game_backend.Deck
-
Adds a card to the end of the deck
- advice(Card[]) - Method in class game_backend.DoubleBonus
-
Implements the strategy for this variant of Poker.
- advice(Card[]) - Method in class game_backend.Game
-
For a given hand, retrieves the cards that should be held in order to achieve the maximum
gain (greedy way)
- advice(Card[]) - Method in interface game_backend.Play
-
- advice(Card[]) - Method in interface game_backend.PlayVariant
-
- advice(Card[]) - Method in class game_backend.PokerRules
-
Abstract method.
- advice() - Method in class game_frontend.Match
-
Advises the user about the cards he should hold according to the implemented strategy
- advice() - Method in class game_frontend.Simulation
-
Simpler implementation of advice without prints to the console