mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
7 lines
101 B
C#
7 lines
101 B
C#
namespace Poker.Strategies;
|
|
|
|
internal class Fold : Strategy
|
|
{
|
|
public override int Value => -1;
|
|
}
|