Refactored controls as module. /JL

This commit is contained in:
2025-04-19 20:45:55 +02:00
parent b142480291
commit 21b7458939
13 changed files with 2 additions and 884 deletions

View File

@@ -1,5 +1,5 @@
import pygame
import pygameController as PC
import pygameControls as PC
from actors.enums import Colors, PlayerDirection
from actors.pacman import ActorPacman
from actors.ghost import Blinky, Pinky, Inky, Clyde # adjust import path as needed
@@ -7,7 +7,7 @@ from actors.ghost_mode_controller import GhostModeController
from hud import HUD
from maze import Maze
__version__ = "0.3.1"
__version__ = "0.3.2"
def spawn_ghosts(center_position):