Index

ncurses-minesweeper / 82ddf89

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1812 Sep 2020 23:2382ddf89Colors; base game state and game renderingJosh Stockin110G

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

text/plain267 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_game(game_state *state, int ch);
8int draw_options_screen(game_state *state, int ch);
9int draw_help_screen(game_state *state, int ch);
10
11#endif
12