Added maze loading. /JL

This commit is contained in:
2025-04-17 21:40:49 +02:00
parent fdd3ce1255
commit 21870930ef
8 changed files with 158 additions and 37 deletions

View File

@@ -1,5 +1,6 @@
from .enums import GhostColor, GhostMode, GhostBehavior
from .behaviors import path_toward # required if you want a fallback
from .ghost_behaviors import path_toward # required if you want a fallback
import pygame
class Ghost(pygame.sprite.Sprite):
def __init__(self, name, color_enum, behavior_enum, position, speed):