import { Hallway } from "./Hallway"; import { Room } from "./Room"; import { ForkNode } from "./ForkNode"; /** * This class represents a "hallway" that is simple enough that it is redundant * to give further directions from it to any room inside of it. This can be * useful when describing a room that's inside of another room. * * Example: */ export declare class SimpleHallway extends Hallway { hallwayName: string; constructor(nodeId: ForkNode, partList: Room[], hallwayName: string); getDirectionsFromIndices(from: number, to: number): string; }