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 Stockin180G

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

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