Index

ncurses-minesweeper / 14fa750

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1913 Sep 2020 14:2371d76abAdd majority of game logic, renderingJosh Stockin1100G

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

text/plain242 bytesdownload raw
1#ifndef GAME_NEAREST_CELLS_H
2#define GAME_NEAREST_CELLS_H
3
4#include <stdint.h>
5#include "../state.h"
6
7int16_t *list_nearby_cells(game_board *board, uint16_t cell);
8void recursively_open_nearby_cells(game_board *board, uint16_t cell);
9
10#endif
11