From 0776a21bffd05de6c124c9bbe09ff7642abaa53d Mon Sep 17 00:00:00 2001 From: Lerking Date: Tue, 15 Apr 2025 22:24:53 +0200 Subject: [PATCH] Update pman.py --- pman.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pman.py b/pman.py index e39e877..a0eb9ac 100644 --- a/pman.py +++ b/pman.py @@ -3,6 +3,7 @@ from actors.enums import Colors, PlayerDirection from actors.pacman import ActorPacman from labyrinth import Labyrinth from actors.ghosts import Blinky, Pinky, Inky, Clyde # adjust import path as needed +from scoreboard import Scoreboard __version__ = "0.2.1" @@ -56,6 +57,7 @@ def main() -> None: screen = pygame.display.set_mode((screen_width, screen_height)) pygame.display.set_caption("Pac-Man " + __version__) + scoreboard = Scoreboard() labyrinth = Labyrinth(screen, width=screen_width, height=screen_height) player = ActorPacman(screen, center=(200, 200)) ghost_home_center = (maze_width // 2, maze_height // 2)