game skeleton

This commit is contained in:
2026-08-29 19:07:32 +02:00
parent a04a61ddd0
commit 0d8918e6f5
39 changed files with 2540 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
package main
import (
"flag"
"log"
inkwell "git.teletypegames.org/engines/inkwell"
"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)
}
}