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
+3 -3
View File
@@ -7,7 +7,7 @@ import (
inkwell "git.teletypegames.org/engines/inkwell"
"git.teletypegames.org/games/realworld/inc"
"git.teletypegames.org/games/realworld/inc/boot"
)
//go:embed assets
@@ -16,13 +16,13 @@ var assets embed.FS
func init() { inkwell.AssetFS = assets }
func main() {
var o inc.Opts
var o boot.Opts
flag.StringVar(&o.Scene, "scene", "", "starting scene (empty: the alley)")
flag.BoolVar(&o.Finale, "finale", false,
"start with the finale, to try the Nokia-punk theme switch")
flag.Parse()
if err := inkwell.Run(inc.New(o)); err != nil {
if err := inkwell.Run(boot.New(o)); err != nil {
log.Fatal(err)
}
}