Initial game. /JL

This commit is contained in:
2025-04-21 20:33:36 +02:00
parent bf0f4d02da
commit a4a4b19d86
10 changed files with 377 additions and 0 deletions

12
dropzone.py Normal file
View File

@@ -0,0 +1,12 @@
import pygame
class DropZone():
def __init__(self, width, height):
self.dropzone = pygame.Surface((width, height))
self.width = width
self.height = height
self.dropzone.fill((0, 0, 0)) # Fill with black
def draw(self, screen, tile_size):
screen.blit(self.dropzone, (tile_size * 4, tile_size * 1))