//------------------------------------------------------------------------------ // // 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(998, "bAddon", 152)] public class bAddon { [DNAFieldAttribute(8, "bAddon", 0, "*next", "bAddon", true, 0)] public bAddon next; [DNAFieldAttribute(8, "bAddon", 1, "*prev", "bAddon", true, 8)] public bAddon prev; [DNAFieldAttribute(128, "char", 2, "module[128]", "System.Char[]", false, 16)] public char[] module = new System.Char[128]; [DNAFieldAttribute(8, "IDProperty", 3, "*prop", "IDProperty", true, 144)] public IDProperty prop; public bAddon() { this.next = default; this.prev = default; this.module = default; this.prop = default; } public bAddon(bAddon next, bAddon prev, char[] module, IDProperty prop) { this.next = next; this.prev = prev; this.module = module; this.prop = prop; } } }