summaryrefslogtreecommitdiff
path: root/README.md
blob: 5a74bf8aeb3ac36b0a5af1716d8e42c7b75360ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# snake in c and ncurses

Simple snake game written in C using ncurses. The code is well commented and should step you through the flow nicely. A thread is used for user input. Controls displayed on screen.

# things to change
Change the board width and height by editing:
```
#define WIDTH 20
#define HEIGHT 20
```

Change the speed of the game by altering the int at the bottom of update() passed to usleep(). A recommended value is there commented out.

# compiling and running
compile and run using:
```
gcc snake.c -o snake -lncurses -lpthread && ./snake
```