You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cardGame/public/js/game/components.js

15 lines
236 B
JavaScript

// Should mostly match server's components.js
// Misc. game data required
let gameData = {
playerId : null,
opponentId : null,
roomId : null,
turn : 0,
playerTurn : 0,
players : null,
// Real components from here?
}