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