├── .gitignore ├── Makefile ├── config.h ├── frame.c ├── shapes.c ├── tetris.c ├── tetris.h └── util.c /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | core 3 | tty-tetris 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/Makefile -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/config.h -------------------------------------------------------------------------------- /frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/frame.c -------------------------------------------------------------------------------- /shapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/shapes.c -------------------------------------------------------------------------------- /tetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/tetris.c -------------------------------------------------------------------------------- /tetris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/tetris.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorg62/tty-tetris/HEAD/util.c --------------------------------------------------------------------------------