vbsp 0.9.1

Rust parser for valve bsp files.
Documentation
1
2
3
4
5
6
7
8
use super::Handle;
use crate::data::*;

impl<'a> Handle<'a, StaticPropLump> {
    pub fn model(&self) -> &'a str {
        self.bsp.static_props.dict.name[self.prop_type as usize].as_str()
    }
}