14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
function handlePlayCard(card, dog) {
|
|
// TODO needs implementation
|
|
}
|
|
|
|
function handleSkipDogLife(button) {
|
|
// TODO needs implementation
|
|
}
|
|
function startGame() {
|
|
sendEvent("Start Game")
|
|
}
|
|
function handleKickPlayer(playerId) {
|
|
// TODO needs implementation
|
|
}
|