14 lines
291 B
Go
14 lines
291 B
Go
package inc
|
|
|
|
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},
|
|
},
|
|
}
|
|
}
|