https://github.com/jochasinga/pong.rs
My first pong game.
https://github.com/jochasinga/pong.rs
Last synced: 9 months ago
JSON representation
My first pong game.
- Host: GitHub
- URL: https://github.com/jochasinga/pong.rs
- Owner: jochasinga
- Created: 2020-05-11T17:28:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T00:12:32.000Z (about 6 years ago)
- Last Synced: 2024-10-18T15:18:58.827Z (over 1 year ago)
- Language: Rust
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pong
## How to run
To run the game, run the following command, which defaults to the `vulkan` graphics backend:
```bash
cargo run
```
Windows and Linux users may explicitly choose `"vulkan"` with the following command:
```bash
cargo run --no-default-features --features "vulkan"
```
Mac OS X users may explicitly choose `"metal"` with the following command:
```bash
cargo run --no-default-features --features "metal"
```