Import Action and ActionResult from actions submodules

This commit is contained in:
Eryn Wells 2022-05-29 21:24:31 -07:00
parent 05eb5c4ade
commit 90994cafd7
2 changed files with 2 additions and 4 deletions

View file

@ -1,4 +1 @@
# Eryn Wells <eryn@erynwells.me>
from .action import Action
from .result import ActionResult

View file

@ -10,7 +10,8 @@ import tcod
from . import log
from . import monsters
from .actions import Action, ActionResult
from .actions.action import Action
from .actions.result import ActionResult
from .ai import HostileEnemy
from .events import GameOverEventHandler, MainGameEventHandler
from .geometry import Point, Rect, Size