Files
realworld/inc/screen.noodle_house.go
T
2026-08-29 23:59:56 +02:00

18 lines
310 B
Go

package inc
func init() {
ScreenManager.Register(Screen{
Name: ScreenNoodleHouse,
Title: "NOODLE'S HOUSE — SEALED",
Background: BgNoodleHouse,
OnSelector: true,
Exits: []exit{
{
to: ScreenAlley,
label: "the alley behind the house",
side: sideRight,
},
},
})
}