✨ (game): Generate grid & User Interactions
Generate grid with bombs & numbers, user interactions like, click on a cell, pin a flag
This commit is contained in:
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
export type Difficulty = 'beginner' | 'intermediate' | 'expert';
|
||||
export type CellValue = 'empty' | 'bomb' | number;
|
||||
export type GridType = { hidden: boolean; value: CellValue; flag: boolean }[][];
|
||||
Reference in New Issue
Block a user