feat: add basic game loop

This commit is contained in:
2025-10-18 01:32:18 +02:00
parent da8c64624f
commit 6276f97cce
2 changed files with 50 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ from src.game import Game
def main():
print("Welcome to Rally Racer !")
game: Game = Game()
game.mainloop()
if __name__ == "__main__":