project-wormhole-esm 0.1.0

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

define_record2! {
    b"FSTS",
    FootstepSet, [
        EditorId;
        b"DATA", PlayList, Vec<FormId>;
        b"XCNT", Counts, FootstepSetCounts;
    ]
}



#[derive(Debug, NomLE)]
pub struct FootstepSetCounts {
    pub walking: u32,
    pub running: u32,
    pub sprinting: u32,
    pub sneaking: u32,
    pub swimming: u32
}