Blackjack.BlackjackGame.BlackjackGame C# (CSharp) Method

BlackjackGame() public method

Creates a new instance of a game of Blackjack.
public BlackjackGame ( BlackjackSettings settings ) : System
settings BlackjackSettings
return System
        public BlackjackGame(BlackjackSettings settings)
        {
            Settings = settings;
            _shoe = new Shoe(settings.DecksPerShoe);
        }