1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-06 00:33:01 +00:00

bounded Minefield now works according to the standard Minesweeper rules

This commit is contained in:
Zeno Rogue
2019-04-04 14:36:45 +02:00
parent e61c684bca
commit 57f2891826
8 changed files with 52 additions and 2 deletions

View File

@@ -1663,6 +1663,10 @@ extern bool timerstopped;
bool againstRose(cell *cfrom, cell *cto);
bool withRose(cell *cfrom, cell *cto);
extern ld bounded_mine_percentage;
extern int bounded_mine_quantity, bounded_mine_max;
void generate_mines();
// loops
#define fakecellloop(ct) for(cell *ct = (cell*)1; ct; ct=NULL)