# tinytetris **Repository Path**: wsldboy/tinytetris ## Basic Information - **Project Name**: tinytetris - **Description**: 俄罗斯方块实现 - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2021-06-30 - **Last Updated**: 2024-03-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tinytetris 80x23 terminal tetris! ![tinytetris gif](animation.gif) ### tinytetris.cpp This is the 80x23 version. You control it with `a` (left), `d` (right), `w` (rotate), `s` (drop), and `q` (quit). It depends on `curses.h` (so you'll need to compile with `-lcurses`, and install curses if you don't already have it) and requires C++11. ### tinytetris-commented.cpp This one is almost identical to `tinytetris.cpp`, but not minified, and with some comments to make it easier to read (but it's still tricky to read in certain parts).