├── .github └── workflows │ └── main_hyperwizard.yml ├── .gitignore ├── README.md ├── cheat-sheet.txt ├── client.js ├── downloads └── grue.png ├── elmer ├── Hyper.html ├── build │ ├── Graphecs.js │ └── Ting.js └── resources │ └── elm-runtime.js ├── iisnode.yml ├── images ├── brook.png ├── cave.png ├── entrance.png ├── grue.png ├── guardian-skull.png ├── hill.png ├── island.png ├── magical-void.png ├── mirror.png ├── mirrors.png ├── otter.png ├── room-floor.png ├── room-roof.png ├── sign.png └── teapot.png ├── npm-shrinkwrap.json ├── package.json ├── reps ├── bridge.json ├── brook-ext.json ├── brook-orig.json ├── brook.json ├── cave.json ├── hill.json └── island.json ├── resource-overview.txt ├── run.js ├── server.js ├── start.js └── walkthru.txt /.github/workflows/main_hyperwizard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/.github/workflows/main_hyperwizard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/README.md -------------------------------------------------------------------------------- /cheat-sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/cheat-sheet.txt -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/client.js -------------------------------------------------------------------------------- /downloads/grue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/downloads/grue.png -------------------------------------------------------------------------------- /elmer/Hyper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/elmer/Hyper.html -------------------------------------------------------------------------------- /elmer/build/Graphecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/elmer/build/Graphecs.js -------------------------------------------------------------------------------- /elmer/build/Ting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/elmer/build/Ting.js -------------------------------------------------------------------------------- /elmer/resources/elm-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/elmer/resources/elm-runtime.js -------------------------------------------------------------------------------- /iisnode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/iisnode.yml -------------------------------------------------------------------------------- /images/brook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/brook.png -------------------------------------------------------------------------------- /images/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/cave.png -------------------------------------------------------------------------------- /images/entrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/entrance.png -------------------------------------------------------------------------------- /images/grue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/grue.png -------------------------------------------------------------------------------- /images/guardian-skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/guardian-skull.png -------------------------------------------------------------------------------- /images/hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/hill.png -------------------------------------------------------------------------------- /images/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/island.png -------------------------------------------------------------------------------- /images/magical-void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/magical-void.png -------------------------------------------------------------------------------- /images/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/mirror.png -------------------------------------------------------------------------------- /images/mirrors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/mirrors.png -------------------------------------------------------------------------------- /images/otter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/otter.png -------------------------------------------------------------------------------- /images/room-floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/room-floor.png -------------------------------------------------------------------------------- /images/room-roof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/room-roof.png -------------------------------------------------------------------------------- /images/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/sign.png -------------------------------------------------------------------------------- /images/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/images/teapot.png -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/package.json -------------------------------------------------------------------------------- /reps/bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/bridge.json -------------------------------------------------------------------------------- /reps/brook-ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/brook-ext.json -------------------------------------------------------------------------------- /reps/brook-orig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/brook-orig.json -------------------------------------------------------------------------------- /reps/brook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/brook.json -------------------------------------------------------------------------------- /reps/cave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/cave.json -------------------------------------------------------------------------------- /reps/hill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/hill.json -------------------------------------------------------------------------------- /reps/island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/reps/island.json -------------------------------------------------------------------------------- /resource-overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/resource-overview.txt -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/run.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/server.js -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/start.js -------------------------------------------------------------------------------- /walkthru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarwh/hyperwizard/HEAD/walkthru.txt --------------------------------------------------------------------------------