mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 20:34:32 -08:00
9 lines
149 B
C#
9 lines
149 B
C#
namespace Poker.Strategies;
|
|
|
|
internal class Bet : Strategy
|
|
{
|
|
public Bet(int amount) => Value = amount;
|
|
|
|
public override int Value { get; }
|
|
}
|