project-wormhole-esm 0.1.0

ESM file format parser for Project Wormhole
Documentation
pub mod types;
pub mod records;
pub mod traits;
pub mod structs;
pub mod esm;
pub mod consts;
mod tests;

mod dev {
    pub use nom_derive::{Parse, NomLE};
    pub use nom::IResult;
    pub use nom::number::complete::*;
    pub use nom::multi::many0;
    pub use nom::bytes::complete::take;
    
    pub use nom_derive::nom;
    pub use project_wormhole_proc::{define_record2, VersionedParse};

    pub use super::traits::*;
    pub use super::consts::*;

    pub use project_wormhole_shared::structs::fourcc::FourCC;
    pub use project_wormhole_shared::traits::parse_versioned::ParseVersioned;
    pub use super::structs::record::*;
    pub use super::structs::field::*;
    pub use super::structs::group::*;
    pub use super::types::*;
    pub use super::structs::strings::*;
    pub use super::structs::geometry::*;
    pub use super::structs::colors::*;
    pub use super::structs::virtual_machine_adapter::*;
    pub use super::structs::destructible::*;
    pub use super::structs::data::*;
    pub use super::structs::model::*;
    pub use super::structs::form_id::FormId;
}