project-wormhole-esm 0.1.0

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

define_record2! {
    b"LGTM",
    LightingTemplate, [
        EditorId;
        b"DALC", DirectionalAmbientLightingColor, LightingDirectionalAmbientLightingColor; // TODO: 32 bytes
        b"DATA", Data, LightingTemplateData;
    ]
}


#[derive(Debug, NomLE)]
pub struct LightingTemplateData {

}

#[derive(Debug, NomLE)]
pub struct LightingDirectionalAmbientLightingColor {

}