This project implements a simple tetris clone in c++, including an AI which plays itself.
tetris.mp4
This project uses git submodules to link to external libraries. To download all required dependencies, clone with the following command:
git clone --recurse-submodules git@github.com:maze7/tetris.gitIf you have already cloned the repository, but are missing submodules, use the following commands:
git submodule init
git submodule update- This project uses CMake as the build system. Please ensure you have CMake installed on your system before attempting to build. Once you have cmake installed, you can build the program using the following command:
cmake -G Ninja .