20 lines
641 B
Go
20 lines
641 B
Go
package inc
|
|
|
|
// noodleHouse is the street front outside Noodle's place. By the time Paul
|
|
// gets there the police have sealed the house and taken Noodle in, and a
|
|
// uniform stands in front of the tape (wiki: story#noodle-szál).
|
|
//
|
|
// The wiki's graph runs NoodleUtcafront → Sikátor: the alley behind the house
|
|
// is reached from here, and from nowhere else.
|
|
func screenNoodleHouse() screen {
|
|
return screen{
|
|
name: ScreenNoodleHouse,
|
|
title: "NOODLE'S HOUSE — SEALED",
|
|
background: BgNoodleHouse,
|
|
onSelector: true,
|
|
exits: []exit{
|
|
{to: ScreenAlley, label: "the alley behind the house", side: sideRight},
|
|
},
|
|
}
|
|
}
|