project-wormhole-esm 0.1.0

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

define_record2! {
    b"MGEF",
    MagicEffect, [
        EditorId;
        Keyword;
        FullName;
        VirtualMachineAdapter;
        Condition;
        b"DATA", Data, MagicEffectData;
        b"DNAM", ItemDescription, LocalizedString;
        b"SNDD", Sounds, EmptyParser; //(FormId, FormId); // TODO: Sometimes field is zero length to denote NULL
    ]
}


#[derive(Debug, NomLE)]
pub struct MagicEffectData {
    // TODO: fill out
}