Generate PROS bindings to rust
In build.rs
```rust
use pros_bindgen::bindgen;
fn main(){ bindgen(); } ```
In some file to import the bindings ```rust
include!(concat!(env!("OUT_DIR"), "/bindings.rs")); ```
If you want to use it, make an issue and I'll document it.