2023-04-30 10:44:00 +00:00
|
|
|
# Ludum Dare 53: House Delivery
|
2023-04-29 02:02:19 +00:00
|
|
|
|
|
|
|
A game written in Rust for the [WASM-4](https://wasm4.org) fantasy console.
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
Build the cart by running:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo build --release
|
|
|
|
```
|
|
|
|
|
|
|
|
Then run it with:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
w4 run target/wasm32-unknown-unknown/release/cart.wasm
|
|
|
|
```
|
|
|
|
|
|
|
|
For more info about setting up WASM-4, see the [quickstart guide](https://wasm4.org/docs/getting-started/setup?code-lang=rust#quickstart).
|
|
|
|
|
|
|
|
## Links
|
|
|
|
|
2023-04-30 11:13:15 +00:00
|
|
|
- [Ludum Dare 53 Entry Page](https://ldjam.com/events/ludum-dare/53/ld53-house-delivery)
|
|
|
|
- [Github Source](https://github.com/Stephen-Seo/LD53)
|
|
|
|
- [Gitea Source (self-hosted)](https://git.seodisparate.com/stephenseo/LD53)
|
|
|
|
- [HTML WASM game (self-hosted)](https://burnedkirby.com/ld53)
|
2023-04-29 02:02:19 +00:00
|
|
|
- [Documentation](https://wasm4.org/docs): Learn more about WASM-4.
|
|
|
|
- [Snake Tutorial](https://wasm4.org/docs/tutorials/snake/goal): Learn how to build a complete game
|
|
|
|
with a step-by-step tutorial.
|
|
|
|
- [GitHub](https://github.com/aduros/wasm4): Submit an issue or PR. Contributions are welcome!
|