tmp backgrounds
ci/woodpecker/push/ebitengine Pipeline was successful

This commit is contained in:
2026-08-29 22:30:22 +02:00
parent 45dac473fd
commit bbc3faf3d7
87 changed files with 1672 additions and 158 deletions
+12 -1
View File
@@ -1,6 +1,7 @@
package main
import (
"embed"
"flag"
"log"
@@ -9,9 +10,19 @@ import (
"git.teletypegames.org/games/realworld/internal/boot"
)
// The art ships inside the binary. js/wasm has no OS filesystem, so without
// this every background in the web build falls back to a placeholder; and
// `make binaries` packages the executable alone, with no assets directory
// beside it.
//
//go:embed assets
var assets embed.FS
func init() { inkwell.AssetFS = assets }
func main() {
var o boot.Opts
flag.StringVar(&o.Scene, "scene", "", "starting scene (empty: the alley)")
flag.StringVar(&o.Screen, "screen", "", "starting screen (empty: the alley)")
flag.BoolVar(&o.Finale, "finale", false,
"start with the finale, to try the Nokia-punk theme switch")
flag.Parse()