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

17 lines
306 B
Go

package inc
func init() {
ScreenManager.Register(Screen{
Name: ScreenSmallRestaurant,
Title: "SMALL RESTAURANT — NEXT DOOR",
Background: BgSmallRestaurant,
Exits: []exit{
{
to: ScreenTrinketShop,
label: "back to the trinket shop",
side: sideLeft,
},
},
})
}