Update actors/ghost.py

This commit is contained in:
2025-04-15 22:08:28 +02:00
parent 45b882110d
commit 15f8e4bb2e

View File

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