project-wormhole-esm 0.1.0

ESM file format parser for Project Wormhole
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::dev::*;

// This record forgoes the usual fields in favor of a single DATA structure

define_record2! {
    b"AMDL",
    AimModel, [
        EditorId;
        b"DATA", AimModelData, AimModelData;
    ]
}


// TODO: Find actual structure
#[derive(Debug, NomLE)]
pub struct AimModelData {
    
}