Index
ncurses-minesweeper
/
5a2607d
Terminal game of Minesweeper, implemented in C with ncurses.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
12
12 Sep 2020 16:19
9e98a79
Create game loop and page structure
Josh Stockin
1
9
0
G
Blob @
ncurses-minesweeper
/
src
/
draw
/
draw.h
text/plain
134 bytes
download raw
1
#ifndef DRAW_H
2
#define DRAW_H
3
4
#include
"../state.h"
5
6
int
draw
(
game_state
*
state
,
int
ch
);
7
void
draw_loop
(
game_state
*
state
);
8
9
#endif
10