Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 352 Bytes

File metadata and controls

16 lines (12 loc) · 352 Bytes

tetris

the popular Tetris game with C++ implementation

compile

cmake . ; make ;

and run the game: ./tetris

Controls

  • Left arrow key: Move block left.
  • Right arrow key: Move block right.
  • Up arrow key: Rotate block.
  • Down arrow key: Move down block instantaneously.
  • Escape: Close the game with the escape key.