Index
ncurses-minesweeper
/
71d76ab
Terminal game of Minesweeper, implemented in C with ncurses.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
18
12 Sep 2020 23:23
82ddf89
Colors; base game state and game rendering
Josh Stockin
1
1
0
G
Blob @
ncurses-minesweeper
/
src
/
draw
/
pages.h
text/plain
267 bytes
download raw
1
#ifndef DRAW_PAGES_H
2
#define DRAW_PAGES_H
3
4
#include
"../state.h"
5
6
int
draw_title_screen
(
game_state
*
state
,
int
ch
);
7
int
draw_game
(
game_state
*
state
,
int
ch
);
8
int
draw_options_screen
(
game_state
*
state
,
int
ch
);
9
int
draw_help_screen
(
game_state
*
state
,
int
ch
);
10
11
#endif
12