project-wormhole-esm 0.1.0

ESM file format parser for Project Wormhole
Documentation
use crate::dev::*;

define_record2! {
    b"DEBR",
    Debris, [
        EditorId;
        ModelData;
        b"DATA", Data, u8;
    ]
}



// This is probably wrong
#[derive(Debug, NomLE)]
pub struct DebrisData {
    pub percentage: u32,
    pub model_path: ESMString,
    pub flags: u8
}