Formatting

This commit is contained in:
Vortrex
2022-07-23 04:15:51 -05:00
parent 59e704ee19
commit d04b5549a6

View File

@@ -10,12 +10,17 @@
let blackJackGUI = {
window: null,
dealerHand: [],
playerHand: [],
};
}
// ===========================================================================
let playerCards = [];
let dealerCards = [];
// ===========================================================================
function initBlackJackGUI() {
// Render a blackjack game in MexUI
//logToConsole(LOG_DEBUG, `[VRR.GUI] Creating blackjack GUI ...`);
@@ -40,3 +45,5 @@ function initBlackJackGUI() {
//logToConsole(LOG_DEBUG, `[VRR.GUI] Created blackjack GUI`);
}
// ===========================================================================