caco 0.5.33

library for dealing with doom [et al] wad files
Documentation
1
2
3
4
5
6
7
8
/// Named data inside a Wad/Clod.
pub trait Clump {
    /// An immutable reference to the name.
    fn name(&self) -> &String;

    /// An immutable reference to the contents.
    fn bytestuff(&self) -> &Box<[u8]>;
}