# map_tiler # Taking rectangular tiles, build a map of arbitrary size # with doors between some, but not all, adjacent squares # Author: Noƫlle Anthony class Layout: def __init__(self): pass class Room: def __init__(self): pass def main(): pass if __name__ == "__main__": main()