bsp_rs 0.1.0

A Valve BSP loader
Documentation
1
2
3
4
5
6
7
use bsp_rs::read_bsp;

fn main() {
    let bytes = include_bytes!("catacombs_01.bsp");
    let bsp = read_bsp(bytes).unwrap();
    println!("{:#?}", bsp.textures);
}