mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 12:51:29 -08:00
7 lines
93 B
C#
7 lines
93 B
C#
namespace Poker.Strategies;
|
|
|
|
internal class Raise : Bet
|
|
{
|
|
public Raise() : base(2) { }
|
|
}
|