12 lines
No EOL
302 B
TypeScript
12 lines
No EOL
302 B
TypeScript
import type { Script } from "./types"
|
|
import { roomHauseingang } from "./rooms/hauseingang"
|
|
import { roomKueche } from "./rooms/küche"
|
|
|
|
const script: Script = {
|
|
roomsById: new Map
|
|
}
|
|
|
|
script.roomsById.set("hauseingang", roomHauseingang)
|
|
script.roomsById.set("küche", roomKueche)
|
|
|
|
export { script } |