invaders-rs
Final project of Ultimate Rust Crash Course
🎬 How to start
- Get all dependencies by running
cargo build && cargo build --release
- For testing just run
cargo run
🚨 Notice
- For macOS user (and maybe other OS too), you need to set the sleeping duration in
src/main
// Sleep to wait for the render loop ready
// Configure the sleep time. Each computer is different (IDK why ???)
thread::sleep(Duration::from_millis(20));
|-----------------------------------^^^
|___Change this___