Index

ncurses-minesweeper / 82ddf89

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1212 Sep 2020 16:199e98a79Create game loop and page structureJosh Stockin190G

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

text/plain134 bytesdownload raw
1#ifndef DRAW_H
2#define DRAW_H
3
4#include "../state.h"
5
6int draw(game_state *state, int ch);
7void draw_loop(game_state *state);
8
9#endif
10