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

27 lines
492 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
SceneManager.Register(Scene{
Name: SceneNormanApartment,
Title: "NORMAN'S APARTMENT",
Background: BgNormanApartment,
Exits: []inkwell.Exit{
exitToSelector,
{
To: SceneRooftopHideout,
Label: "the stairs up to the roof",
Side: inkwell.ExitBack,
},
{
To: SceneBBSTerminal,
Label: "Norman's terminal",
Side: inkwell.ExitRight,
},
},
})
}