Files
realworld/inc/screen.rooftop_hideout.go
T
2026-08-29 23:27:15 +02:00

14 lines
357 B
Go

package inc
func screenRooftopHideout() screen {
return screen{
name: ScreenRooftopHideout,
title: "NORMAN'S ROOFTOP HIDEOUT",
background: BgRooftopHideout,
exits: []exit{
{to: ScreenNormanApartment, label: "back down into the flat", side: sideNear},
{to: ScreenBBSTerminal, label: "the old terminal", side: sideRight},
},
}
}