Skip to content

Commit b8aa5fe

Browse files
committed
initial commit, drawing cells
0 parents  commit b8aa5fe

19 files changed

+166
-0
lines changed

.assets.h.swp

12 KB
Binary file not shown.

application.fam

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
App(
2+
appid="minesweeper",
3+
name="BPM Tapper",
4+
apptype=FlipperAppType.PLUGIN,
5+
entry_point="minesweeper_app",
6+
cdefines=["APP_MINESWEEPER"],
7+
requires=["gui"],
8+
stack_size=2 * 1024,
9+
fap_category="Games",
10+
order=35,
11+
)

assets.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#define tile_uncleared_width 8
2+
#define tile_uncleared_height 8
3+
static uint8_t tile_uncleared_bits[] = {
4+
0xFF, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0xFF, };

assets/mockup.png

400 Bytes
Loading

assets/tile_0.png

148 Bytes
Loading

assets/tile_1.png

155 Bytes
Loading

assets/tile_2.png

164 Bytes
Loading

assets/tile_3.png

162 Bytes
Loading

assets/tile_4.png

162 Bytes
Loading

assets/tile_5.png

164 Bytes
Loading

0 commit comments

Comments
 (0)