aboutsummaryrefslogtreecommitdiffstats
path: root/demos/applications/minesweeper/mines.h
diff options
context:
space:
mode:
Diffstat (limited to 'demos/applications/minesweeper/mines.h')
-rw-r--r--demos/applications/minesweeper/mines.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/demos/applications/minesweeper/mines.h b/demos/applications/minesweeper/mines.h
deleted file mode 100644
index d300303b..00000000
--- a/demos/applications/minesweeper/mines.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _MINES_H_
-#define _MINES_H_
-
-#define MINES_CELL_WIDTH 23 // Number of pixels
-#define MINES_CELL_HEIGHT 23 // Number of pixels
-#define MINES_FIELD_WIDTH 20 // Number of cells
-#define MINES_FIELD_HEIGHT 11 // Number of cells
-#define MINES_FLAG_DELAY 150 // Number of milliseconds
-#define MINES_MINE_COUNT 35 // Around 15%-20% field/mines ratio is nice!
-
-void minesInit(void);
-void minesStart(void);
-
-#if MINES_SHOW_SPLASH
- void minesShowSplash(void);
-#endif
-
-#endif /* _MINES_H_ */