Index
ncurses-minesweeper
/
3345b60
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
8
0
G
Blob @
ncurses-minesweeper
/
src
/
draw
/
title.h
text/plain
126 bytes
download raw
1
#ifndef DRAW_TITLE_H
2
#define DRAW_TITLE_H 1
3
4
#include
"../state.h"
5
6
int
draw_title_screen
(
game_state
*
state
,
int
ch
);
7
8
#endif
9