summary refs log tree commit diff stats
path: root/rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'rules.py')
-rw-r--r--rules.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules.py b/rules.py index 481fab1..054c330 100644 --- a/rules.py +++ b/rules.py
@@ -1,8 +1,9 @@
1from typing import TYPE_CHECKING 1from typing import TYPE_CHECKING
2 2
3from BaseClasses import CollectionState 3from BaseClasses import CollectionState
4from .datatypes import RoomAndDoor
4from .player_logic import AccessRequirements, LingoPlayerLogic, PlayerLocation 5from .player_logic import AccessRequirements, LingoPlayerLogic, PlayerLocation
5from .static_logic import PROGRESSION_BY_ROOM, PROGRESSIVE_ITEMS, RoomAndDoor 6from .static_logic import PROGRESSION_BY_ROOM, PROGRESSIVE_ITEMS
6 7
7if TYPE_CHECKING: 8if TYPE_CHECKING:
8 from . import LingoWorld 9 from . import LingoWorld