]> Skullheadx's Git Forge - Minesweeper.git/commitdiff
Update game.py
authorSkullheadx <admonty1@gmail.com>
Sun, 19 Mar 2023 23:05:25 +0000 (19:05 -0400)
committerSkullheadx <admonty1@gmail.com>
Sun, 19 Mar 2023 23:05:25 +0000 (19:05 -0400)
game.py

diff --git a/game.py b/game.py
index feb2276d59ab9e38733cf9280f4d6d7c846709b5..a01a8c223cf4a210cef623c12a45884824e9227b 100644 (file)
--- a/game.py
+++ b/game.py
@@ -1,5 +1,3 @@
-import pygame.event
-
 from setup import *
 from grid import Grid
 
@@ -7,7 +5,7 @@ from grid import Grid
 class Game:
 
        def __init__(self):
-               self.grid = Grid(20, 20, 50)
+               self.grid = Grid(10, 10, 5)
                self.game_over = False
 
        def update(self, delta):