Index

ncurses-minesweeper / bec4c7f

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1512 Sep 2020 18:10bec4c7fCreate Help screenJosh Stockin180G

Blob @ ncurses-minesweeper / src / draw / help.h

text/plain123 bytesdownload raw
1#ifndef DRAW_HELP_H
2#define DRAW_HELP_H 1
3
4#include "../state.h"
5
6int draw_help_screen(game_state *state, int ch);
7
8#endif
9