1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/2048/README.md

23 lines
597 B
Markdown
Raw Normal View History

2020-08-18 09:07:06 +03:00
# V 2048
This is a simple [2048 game](https://play2048.co/), written in [the V programming language](https://vlang.io/).
![screenshot](demo.png)
2020-08-18 09:07:06 +03:00
## Description:
Merge tiles by moving them.
After each move, a new random tile is added (2 or 4).
The goal of the game is to create a tile with a value of 2048.
## Keys:
Escape - exit the game
Backspace - undo last move
n - restart the game
t - toggle the UI theme
Enter - toggle the tile text format
2020-08-18 09:07:06 +03:00
UP,LEFT,DOWN,RIGHT / W,A,S,D / touchscreen swipes - move the tiles
2020-08-18 09:07:06 +03:00
## Running instructions:
Compile & run the game with `./v run examples/2048`