Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 341 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 341 Bytes

Tetris

Tetris clone written in C++ with raylib. To avoid submodules in the repo I've ignored raylib dir and instead expect you to build raylib with cmake directly in the source folder:

git clone https://github.com/raysan5/raylib.git raylib
cd raylib
mkdir build && cd build
cmake -DBUILD_SHARED_LIBS=ON ..
make
sudo make install