diff --git a/.gitignore b/.gitignore index 6b457db..339043a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ /zig-out /src/zig-cache/ /bundle/ + +wapm_packages \ No newline at end of file diff --git a/README.md b/README.md index 61c3838..3882750 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ A puzzle platformer with wires. ## Controls -Left/Right: Move left and right -Up/Down: Look at items above and below -X: Jump -Z: Select +- Left/Right: Move left and right +- Up/Down: Look at items above and below +- X: Jump +- Z: Select ## Dependencies diff --git a/wapm.toml b/wapm.toml index 7d5cacc..715e083 100644 --- a/wapm.toml +++ b/wapm.toml @@ -4,14 +4,15 @@ version = "0.2.0" description = "A puzzle platformer game with wire physics." readme = "README.md" repository = "https://github.com/desttinghim/wired" +license = "ISC" [[module]] name = "wired" -source = "zig-out/lib/cart.wasm" +source = "wired.wasm" abi = "wasm4" interfaces = { wasm4 = "0.0.1" } [[command]] runner = "wasm4@0.0.1" name = "play" -module = "game" +module = "wired" diff --git a/wired.wasm b/wired.wasm new file mode 100644 index 0000000..ea5dfe7 Binary files /dev/null and b/wired.wasm differ