chore: init

This commit is contained in:
2025-10-17 18:32:08 +02:00
commit afad3a0fe3
7 changed files with 68 additions and 0 deletions

9
src/game.py Normal file
View File

@@ -0,0 +1,9 @@
import pygame
class Game:
DEFAULT_SIZE = (1280, 720)
def __init__(self):
pygame.init()
self.win: pygame.Surface = pygame.display.set_mode(self.DEFAULT_SIZE)