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

17 lines
313 B
Go

package inc
func screenSmallRestaurant() screen {
return screen{
name: ScreenSmallRestaurant,
title: "SMALL RESTAURANT — NEXT DOOR",
background: BgSmallRestaurant,
exits: []exit{
{
to: ScreenTrinketShop,
label: "back to the trinket shop",
side: sideLeft,
},
},
}
}