https://github.com/pmuens/rusty-bird
A Flappy Bird clone written in Rust
https://github.com/pmuens/rusty-bird
Last synced: 5 months ago
JSON representation
A Flappy Bird clone written in Rust
- Host: GitHub
- URL: https://github.com/pmuens/rusty-bird
- Owner: pmuens
- Created: 2022-11-23T09:17:30.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T09:13:48.000Z (almost 3 years ago)
- Last Synced: 2025-02-17T10:47:56.491Z (8 months ago)
- Language: Rust
- Size: 452 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Rusty Bird](https://pmuens.github.io/rusty-bird)
A [Flappy Bird](https://en.wikipedia.org/wiki/Flappy_Bird) clone written in Rust following the ["Hands-on Rust" Book](https://pragprog.com/titles/hwrust/hands-on-rust) by Herbert Wolverson. Click [here](https://pmuens.github.io/rusty-bird) to play the game in your browser.
| Menu | Playing | End |
| :------------------------: | :------------------------------: | :----------------------: |
|  |  |  |## Useful Commands
```sh
nix-shellcargo new
cargo build
cargo clean
cargo testcargo run
cargo fmt
cargo clippy
cargo check
cargo install wasm-bindgen-cli
cargo uninstall wasm-bindgen-cli~/.cargo/bin/wasm-bindgen target/wasm32-unknown-unknown/release/rusty-bird.wasm --out-dir docs/ --no-modules --no-typescript
```## Useful Resources
- [Rust By Example](https://doc.rust-lang.org/rust-by-example)
- [The Rust Programming Language](https://doc.rust-lang.org/book)
- [rust-lang/rustlings](https://github.com/rust-lang/rustlings)
- [Rust Cookbook](https://rust-lang-nursery.github.io/rust-cookbook)
- [Rust Design Patterns](https://rust-unofficial.github.io/patterns)
- [ctjhoa/rust-learning](https://github.com/ctjhoa/rust-learning)
- [Rust for Professionals](https://overexact.com/rust-for-professionals)
- [The Little Book of Rust Books](https://lborb.github.io/book)
- [Learn Rust With Entirely Too Many Linked Lists](https://rust-unofficial.github.io/too-many-lists)
- [Run Your Rust Games in a Browser](https://hands-on-rust.com/2021/11/06/run-your-rust-games-in-a-browser-hands-on-rust-bonus-content)