diff options
Diffstat (limited to 'regions.py')
-rw-r--r-- | regions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regions.py b/regions.py index bdc42f4..464e9a1 100644 --- a/regions.py +++ b/regions.py | |||
@@ -1,11 +1,12 @@ | |||
1 | from typing import Dict, Optional, TYPE_CHECKING | 1 | from typing import Dict, Optional, TYPE_CHECKING |
2 | 2 | ||
3 | from BaseClasses import Entrance, ItemClassification, Region | 3 | from BaseClasses import Entrance, ItemClassification, Region |
4 | from .datatypes import Room, RoomAndDoor | ||
4 | from .items import LingoItem | 5 | from .items import LingoItem |
5 | from .locations import LingoLocation | 6 | from .locations import LingoLocation |
6 | from .player_logic import LingoPlayerLogic | 7 | from .player_logic import LingoPlayerLogic |
7 | from .rules import lingo_can_use_entrance, make_location_lambda | 8 | from .rules import lingo_can_use_entrance, make_location_lambda |
8 | from .static_logic import ALL_ROOMS, PAINTINGS, Room, RoomAndDoor | 9 | from .static_logic import ALL_ROOMS, PAINTINGS |
9 | 10 | ||
10 | if TYPE_CHECKING: | 11 | if TYPE_CHECKING: |
11 | from . import LingoWorld | 12 | from . import LingoWorld |