Index

ncurses-minesweeper / 9e98a79

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

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

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

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