From 15f8e4bb2e35a392fb64c4811f48267a10096cf9 Mon Sep 17 00:00:00 2001 From: Lerking Date: Tue, 15 Apr 2025 22:08:28 +0200 Subject: [PATCH] Update actors/ghost.py --- actors/ghost.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actors/ghost.py b/actors/ghost.py index 3c45261..6949464 100644 --- a/actors/ghost.py +++ b/actors/ghost.py @@ -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):