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

22 lines
401 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,
},
},
}
}