class Blackjack { deck; bank; roundActive = false; constructor() { this.deck = new CardDeck(); this.bank = new LunaBank(); } }