Collection of file's parsers for goldsrc engine.
In your Cargo.toml add new dependency:
toml
[dependcies]
goldsrc-rs = "0.8"
```rust fn main() { let file = File::open("test.wad").unwrap(); let wad = goldsrc_rs::wad(file); // ...
let file = File::open("test.bsp").unwrap();
let bsp = goldsrc_rs::bsp(file);
// ...
} ```
Pull requests are welcome. This hasn't been tested appropriately.
So I'll be glad to see your results and bugs.