caco 0.5.33

library for dealing with doom [et al] wad files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]

//! A rust crate for parsing Doom engine WAD files.
//! 
//! Where's All the Data? It's in the [`WAD`](wad::Wad) struct.

pub mod wad;
pub mod lump;
pub mod agnostic;
pub mod error;

#[cfg(feature = "d2_fmts")]
pub mod fmts;

#[cfg(test)]
mod test;