mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 04:41:52 -08:00
12 lines
211 B
C#
12 lines
211 B
C#
namespace Poker.Strategies;
|
|
|
|
internal class Bluff : Bet
|
|
{
|
|
public Bluff(int amount, int? keepMask)
|
|
: base(amount)
|
|
{
|
|
KeepMask = keepMask;
|
|
}
|
|
|
|
public override int? KeepMask { get; }
|
|
} |