//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(774, "TreeStoreElem", 16)] public class TreeStoreElem { [DNAFieldAttribute(2, "short", 0, "type", "short", false, 0)] public short type; [DNAFieldAttribute(2, "short", 1, "nr", "short", false, 2)] public short nr; [DNAFieldAttribute(2, "short", 2, "flag", "short", false, 4)] public short flag; [DNAFieldAttribute(2, "short", 3, "used", "short", false, 6)] public short used; [DNAFieldAttribute(8, "ID", 4, "*id", "ID", true, 8)] public ID id; public TreeStoreElem() { this.type = default; this.nr = default; this.flag = default; this.used = default; this.id = default; } public TreeStoreElem(short type, short nr, short flag, short used, ID id) { this.type = type; this.nr = nr; this.flag = flag; this.used = used; this.id = id; } } }