GR.Gambling.Blackjack.BonusPairsAgent.BonusPairsAgent C# (CSharp) Method

BonusPairsAgent() public method

public BonusPairsAgent ( int min_bet, int max_bet, double ev_cutoff, BettingSystem betting_system ) : System
min_bet int
max_bet int
ev_cutoff double
betting_system GR.Gambling.Blackjack.Betting.BettingSystem
return System
        public BonusPairsAgent(int min_bet, int max_bet, double ev_cutoff, BettingSystem betting_system)
        {
            this.min_bet = min_bet;
            this.max_bet = max_bet;
            this.current_bet = max_bet;
            this.ev_cutoff = ev_cutoff;
            this.betting_system = betting_system;

            this.shoe = new Shoe(8);

            game_logger = new GameLogger();

            InitializeRound();
        }