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

22 lines
382 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
SceneManager.Register(Scene{
Name: SceneNoodleHouse,
Title: "NOODLE'S HOUSE — SEALED",
Background: BgNoodleHouse,
Exits: []inkwell.Exit{
exitToSelector,
{
To: SceneAlley,
Label: "the alley behind the house",
Side: inkwell.ExitRight,
},
},
})
}