blob: 6dad4f956ae13eeafaa302107e191386e519ed7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
## Tetris CSFML
This is unfinished tetris project written in pure C with CSFML-2.3-2 library. It is under development.
To compile the source code under __linux__ with gcc and run I use following commands:
```
gcc -g main.c functions.c shape_maps.c -o main -lcsfml-graphics -lcsfml-window -lcsfml-system
./main
```
Hit *Return* to start game.
__TODO:__
- "Game Over" with restart
- Levels and scores system with table of records
- Three next shapes
- Main menu with beauties
- Look with sprites
- Autoconf and autotools script
|