caco 0.5.33

library for dealing with doom [et al] wad files
Documentation
//! Format-agnostic traits. These are implemented by specific formats to provide
//! standard functionality for each.
//! 
//! The [`Clump`] family of traits provides functionality to [`Lump`](crate::lump::Lump)s, or
//! other, related concepts that are [`Lump`](crate::lump::Lump)-like in nature.
//! 
//! The [`Clod`] family of traits provides functionality to [`Wad`](crate::wad::Wad)s, or
//! other, related concepts that are [`Wad`](crate::wad::Wad)-like in nature.
//! 
//! [`Clod`]s can have normal entries or subdirectories of entries (ala PK3). 
//! [`FlatClod`] is the special case for having no subdirs, like in
//! the classic Doom wad format. TODO: subdirectories are not yet impl'd.

mod clod;
mod clod_mut;
mod clump;
mod clump_mut;
mod entity;
mod entity_mut;
mod flat_clod;
mod flat_clod_mut;

pub use clod::Clod;
pub use clod_mut::ClodMut;
pub use clump::Clump;
pub use clump_mut::ClumpMut;
pub use entity::Entity;
pub use entity_mut::EntityMut;
pub use flat_clod::FlatClod;
pub use flat_clod_mut::FlatClodMut;

pub use entity::phantoms;

// can this not be ugly????? -nf
#[cfg(feature = "d2_fmts")]
mod clump_formats;
#[cfg(feature = "d2_fmts")]
pub use clump_formats::*;