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

18 lines
313 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,
},
},
}
}