11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
function handlePlayCard(card, dog) {
|
|
// TODO needs implementation
|
|
}
|
|
|
|
function handleSkipDogLife(button) {
|
|
// TODO needs implementation
|
|
}
|
|
function startGame() {
|
|
console.log("CLICKED START GAME, SENDING EVENT...")
|
|
sendEvent("Start Game")
|
|
} |