gnobble gnobble
you are the gnobbler. your job? gnobble.
a retro platformer inspired by the original super mario bros games! if you dont know what a gnobbler is, thats fine, neither do i.
the game features coins, enemies, spikes, trampolines, gnobbler, 4 levels, and a tiny soundtrack i made.
written in RUST (i love you rust).
made for hackclub's siege, for the final week!!!
(if you just want to try the game, simply visit the itch.io page where you can play it in your browser)
you'll need rust installed. to run, simply do cargo run.
to build for web, you need to compile for wasm and move that wasm file to the web dir. you'll also need to serve the file with a software of your choosing.
if you're serving with for instance basic-http-server, that would be:
cargo build --release --target wasm32-unknown-unknown && cp target/wasm32-unknown-unknown/release/gnobbler.wasm web/ && basic-http-server web/