Files
realworld/main.go
T
mr.zero 45dac473fd
ci/woodpecker/push/ebitengine Pipeline was successful
game skeleton
2026-08-29 19:16:40 +02:00

23 lines
446 B
Go

package main
import (
"flag"
"log"
inkwell "git.teletypegames.org/engines/inkwell"
"git.teletypegames.org/games/realworld/internal/boot"
)
func main() {
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(boot.New(o)); err != nil {
log.Fatal(err)
}
}