Add initial game structure with entity, player, and screen management

This commit is contained in:
2026-06-22 15:37:48 +02:00
parent 8990579e06
commit 04a83c5cc2
6 changed files with 109 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import pygame
from game import Game
pygame.init()
game = Game()
game.run()
pygame.quit()