Files
realworld/inc/scene/scene.norman_apartment.go
T
mr.zero c5c0c02c03
ci/woodpecker/push/ebitengine Pipeline was successful
dirs
2026-08-30 23:21:06 +02:00

28 lines
550 B
Go

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