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();
        }