pxt-calliope/docs/reference/game/game-over.md
2016-04-13 08:27:45 -07:00

25 lines
564 B
Markdown

# Game Over
The game library
The game library supports simple single-player time-based games. The game can end the game by calling the `game over` function
## Block Editor
You can end the game by calling the `game over ` function. In this example, if BBC micro:bit's answer to the question is GAME OVER, GAME OVER will be displayed to end the game.
![](/static/mb/game-library/game-over-0.png)
## KindScript
You can end the game by calling the `game -> game over` function:
```
game.gameOver()
```
### Lessons
[game of chance](/lessons/game-of-chance)