Updated. /JL

This commit is contained in:
Jan Lerking
2025-04-23 15:16:17 +02:00
parent dd99fcb633
commit a1910993dc

View File

@@ -1,6 +1,7 @@
import pygame
import pygameControls as PC
from globals import init
import globals
globals.init()
from globals import GRID_WIDTH, GRID_HEIGHT, TILE_SIZE, BRICKS
import enums
from bricks import Brick
@@ -48,7 +49,7 @@ class Tetris:
print(self.next.color)
self.hud = Hud(self.screen_width, self.screen_height)
self.dropzone = DropZone(TILE_SIZE, GRID_WIDTH, GRID_HEIGHT)
self.dropzone = DropZone(GRID_WIDTH, GRID_HEIGHT)
self.dropnext = DropNext(width = TILE_SIZE * 4, height = TILE_SIZE * 4)
self.clock = pygame.time.Clock()
@@ -192,5 +193,4 @@ class Tetris:
self.running = False
if __name__ == "__main__":
globals.init()
game = Tetris()