Add back some imports to map/room.py

This commit is contained in:
Eryn Wells 2023-02-15 08:36:43 -08:00
parent e377b3d7b6
commit d5e8891545

View file

@ -4,6 +4,9 @@
Implements an abstract Room class, and subclasses that implement it. Rooms are basic components of maps.
'''
from typing import Iterator
from ..geometry import Rect
class Room: