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