Interface IStrategy
-
- All Known Implementing Classes:
AbstractStrategy
,ConstantStrategy
,StochasticTable
public interface IStrategy
Interface for a player strategy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
drawCard(Card[] cards, Card dealercard)
Decide if to draw another card.java.lang.String
getName()
Get the strategy name.int
makeBet(int account)
Calculate how much to bet, given the account value.
-