Index

ncurses-minesweeper / f003c49

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1612 Sep 2020 18:46f003c49Move page headers into pages.hJosh Stockin190G

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

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