├── .azure-pipelines.yml ├── CMakeLists.txt ├── README.md ├── game-screenshot.png ├── main.c ├── platform.h ├── platform_posix.c └── platform_win32.c /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/README.md -------------------------------------------------------------------------------- /game-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/game-screenshot.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/main.c -------------------------------------------------------------------------------- /platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/platform.h -------------------------------------------------------------------------------- /platform_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/platform_posix.c -------------------------------------------------------------------------------- /platform_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/ConsoleTetris/HEAD/platform_win32.c --------------------------------------------------------------------------------