mirror of
https://codeberg.org/icewind/vbsp.git
synced 2026-06-03 18:54:05 +02:00
Added readme
This commit is contained in:
parent
a31554771a
commit
ecde0ca59d
1 changed files with 18 additions and 0 deletions
18
readme.md
Normal file
18
readme.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#Example usage
|
||||
|
||||
```extern crate quake3_loader;
|
||||
use std::fs::{File};
|
||||
use std::path::{Path};
|
||||
use std::io::{Read};
|
||||
|
||||
fn main() {
|
||||
let path = Path::new("pak0/maps/q3dm1.bsp");
|
||||
let mut file = File::open(path).unwrap();
|
||||
let mut bytes = Vec::new();
|
||||
file.read_to_end(&mut bytes).unwrap();
|
||||
|
||||
let bsp = quake3_loader::read_bsp(bytes);
|
||||
|
||||
println!("{:?}", bsp);
|
||||
}
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue