Blackjack.Players.CountingSystemBasicStrategyPlayer.GetBet C# (CSharp) 메소드

GetBet() 공개 메소드

public GetBet ( decimal min, decimal max ) : decimal
min decimal
max decimal
리턴 decimal
        public override decimal GetBet(decimal min, decimal max)
        {
            if (count > 0)
                return min * count;
            return min;
        }