https://github.com/kinetictactic/tetris-c
Tetris written in C.
https://github.com/kinetictactic/tetris-c
c raylib tetris
Last synced: 12 months ago
JSON representation
Tetris written in C.
- Host: GitHub
- URL: https://github.com/kinetictactic/tetris-c
- Owner: KineticTactic
- License: mit
- Created: 2024-06-27T18:04:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-04T12:21:17.000Z (almost 2 years ago)
- Last Synced: 2025-04-13T03:56:02.181Z (about 1 year ago)
- Topics: c, raylib, tetris
- Language: C
- Homepage:
- Size: 72.8 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tetris Clone
This is a very simple tetris clone written in C (mostly to practice my C skills). It uses [raylib](https://www.raylib.com/) to render graphics.

## Building the source code
This project uses GCC to compile the source code. To build the project, you need to have GCC installed on your system. On Windows you can use [MinGW](https://www.mingw-w64.org/) to get GCC.
```bash
# Clone the repository
git clone https://github.com/KineticTactic/Tetris-C.git
cd Tetris-C
# Compile the source code
make
```
The executable will be created in the `bin` directory.