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
use crate::dev::*;


// May be depreciated
// Only a single record appears in Fallout4.esm
// TODO: Research this record more thoroughly

define_record2! {
    b"DLVW",
    DialogView, [
        EditorId;
        b"BNAM", Branches, Vec<FormId>;
        b"QNAM", Quest, FormId;
        b"ENAM", Unknown1, u32;
        b"DNAM", Unknown2, u8;
    ]
}