Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 857 Bytes

README.md

File metadata and controls

42 lines (35 loc) · 857 Bytes

2048

Game 2048 - C++ version

Play

  • Up: k or w
  • Down: j or s
  • Left: h or a
  • Right: l or d

Demo

Start

+-----+-----+-----+-----+-----+
|     |    2|     |     |     |
+-----+-----+-----+-----+-----+
|     |     |     |     |     |
+-----+-----+-----+-----+-----+
|    4|     |     |     |     |
+-----+-----+-----+-----+-----+
|     |     |     |     |     |
+-----+-----+-----+-----+-----+
Point: 0

Finish

+-----+-----+-----+-----+-----+
|    4|   32|    4|   32|    2|
+-----+-----+-----+-----+-----+
|    2|   16|   32|   16|    4|
+-----+-----+-----+-----+-----+
|    4|   64|    8|    4|   64|
+-----+-----+-----+-----+-----+
|    2|    8|    2|    8|    2|
+-----+-----+-----+-----+-----+
Point: 538
Game Finished!