From: Skullheadx Date: Sun, 19 Mar 2023 23:05:25 +0000 (-0400) Subject: Update game.py X-Git-Url: http://git.skullheadx.com/nixos/blog/static/gitweb.css?a=commitdiff_plain;h=94a1d54f4fb26b6c45533bb2d9bccd7edf2ba1e8;p=Minesweeper.git Update game.py --- diff --git a/game.py b/game.py index feb2276..a01a8c2 100644 --- 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):