level-up/shared/script/index.ts
2025-04-11 21:03:18 +02:00

12 lines
No EOL
317 B
TypeScript

import type { Script } from "./types"
import { roomHauseingang } from "./rooms/hauseingang"
import { roomKueche } from "./rooms/küche"
const script: Script = {
scenesById: new Map()
}
script.scenesById.set(roomHauseingang.id, roomHauseingang)
script.scenesById.set(roomKueche.id, roomKueche)
export { script }