Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 718 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 718 Bytes

rust-pong

Simple 2D retro Pong game written in Rust language using macroquad library

Local setup

git clone [email protected]:imade/rust-pong.git && cd rust-pong && cargo run --release

⚠️ If you encounter errors with the cargo command then:

  1. If you are on Linux then check that you have installed the necessary libraries that macroquad needs.
  2. If you are on Debian / Ubuntu-like distribution then also install build-essential
    sudo apt-get install build-essential
  3. If you are on Fedora then install "Development Tools"
    sudo dnf groupinstall "Development Tools"