Created Hook separated file

This commit is contained in:
2024-02-18 17:15:10 +01:00
parent 65a66a9f35
commit 7413a5f6a1
4 changed files with 133 additions and 97 deletions
+9
View File
@@ -0,0 +1,9 @@
export type GameState = {
status: string;
difficulty: string;
gridSize: number;
bombs: number;
placedFlags: number;
gameTime: string;
endType: string;
};