//------------------------------------------------------------------------------ // // 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(159, "CollectionObject", 32)] public class CollectionObject { [DNAFieldAttribute(8, "CollectionObject", 0, "*next", "CollectionObject", true, 0)] public CollectionObject next; [DNAFieldAttribute(8, "CollectionObject", 1, "*prev", "CollectionObject", true, 8)] public CollectionObject prev; [DNAFieldAttribute(8, "Object", 2, "*ob", "Object", true, 16)] public Object ob; [DNAFieldAttribute(4, "CollectionLightLinking", 3, "light_linking", "CollectionLightLinking", false, 24)] public CollectionLightLinking light_linking; [DNAFieldAttribute(4, "int", 4, "_pad", "int", false, 28)] public int _pad; public CollectionObject() { this.next = default; this.prev = default; this.ob = default; this.light_linking = default; this._pad = default; } public CollectionObject(CollectionObject next, CollectionObject prev, Object ob, CollectionLightLinking light_linking, int _pad) { this.next = next; this.prev = prev; this.ob = ob; this.light_linking = light_linking; this._pad = _pad; } } }