dirs
ci/woodpecker/push/ebitengine Pipeline was successful

This commit is contained in:
2026-08-30 23:21:06 +02:00
parent 28b1662195
commit c5c0c02c03
115 changed files with 1083 additions and 950 deletions
+26
View File
@@ -0,0 +1,26 @@
package scene
import (
inkwell "git.teletypegames.org/engines/inkwell"
"git.teletypegames.org/games/realworld/inc"
)
func init() {
Manager.Register(Scene{
Name: inc.SceneRooftopHideout,
Title: "NORMAN'S ROOFTOP HIDEOUT",
Background: inc.BgRooftopHideout,
Exits: []inkwell.Exit{
{
To: inc.SceneNormanApartment,
Label: "back down into the flat",
Side: inkwell.ExitNear,
},
{
To: inc.SceneBBSTerminal,
Label: "the old terminal",
Side: inkwell.ExitRight,
},
},
})
}