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):