export type GridState = boolean[][];
export interface CellCoords {
r: number;
c: number;
}
export enum GameStatus {
PLAYING,
WON