https://github.com/marcolucidi01/tetris_clone
a plain Tetris clone made in C
https://github.com/marcolucidi01/tetris_clone
cs50 ncurses tetris
Last synced: about 1 year ago
JSON representation
a plain Tetris clone made in C
- Host: GitHub
- URL: https://github.com/marcolucidi01/tetris_clone
- Owner: MarcoLucidi01
- License: mit
- Created: 2017-07-26T16:20:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T16:47:21.000Z (about 6 years ago)
- Last Synced: 2025-03-29T05:51:14.866Z (about 1 year ago)
- Topics: cs50, ncurses, tetris
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# tetris clone
A plain Tetris clone made in C. Also it is my CS50 final project.
[Few more words](https://marcolucidi01.github.io/posts/a-tetris-clone.html) on my
site.
The library [ncurses](https://en.wikipedia.org/wiki/Ncurses) is required. On
Debian (and I guess on Ubuntu and such):
```bash
# apt-get install libncurses5-dev
```
then:
```bash
$ git clone https://github.com/MarcoLucidi01/tetris_clone.git
$ cd tetris_clone
tetris_clone$ make
tetris_clone$ ./tetris_clone # enjoy!
```