Tetris game (Rust)
A: Move left
D: Move right
S: Faster move down
W: Change direction
Use Rust-installation to install Rust. Or Rust-other-installation-methods if you are using windows.
Go to the game-tetris folder
cd game-tetris
Install deps
cargo install --path .
Run inside game-tetris folder
cargo run
Open ./game-tetris/src/config.rs
and change GAME_SPEED
value:
example
pub const GAME_SPEED: u16 = 60;
To
pub const GAME_SPEED: u16 = 10;
or anything
MIT. >>> LICENSE