Remove global V

This commit is contained in:
Andrew Cooper
2022-06-25 16:12:20 +10:00
parent 860dd40276
commit a777b3888b
2 changed files with 21 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
namespace Poker.Strategies;
internal class None : Strategy
{
public override int Value => -1;
}