Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 4x | import { BuildingId } from "./buildings";
export type BuildingExitRoom = {
floor: string;
room: string;
};
export const BUILDING_EXIT_ROOMS: Partial<
Record<BuildingId, BuildingExitRoom>
> = {
H: { floor: "1", room: "H1-Maisonneuve-Entry" },
LB: { floor: "2", room: "LB2-Emergency-Exit-1" },
MB: { floor: "1", room: "MB1-Main-Entrance" },
VL: { floor: "1", room: "VL-101" },
VE: { floor: "1", room: "VE1-Entrance/exit" },
CC: { floor: "1", room: "CC-Entrance-Exit" },
};
|