Files
realworld/inc/scene.small_restaurant.go
T
mr.zero da1410cb4a
ci/woodpecker/push/ebitengine Pipeline was successful
screen to scene
2026-08-30 00:15:26 +02:00

21 lines
379 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
SceneManager.Register(Scene{
Name: SceneSmallRestaurant,
Title: "SMALL RESTAURANT — NEXT DOOR",
Background: BgSmallRestaurant,
Exits: []inkwell.Exit{
{
To: SceneTrinketShop,
Label: "back to the trinket shop",
Side: inkwell.ExitLeft,
},
},
})
}