//------------------------------------------------------------------------------ // // 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(405, "LinkData", 24)] public class LinkData { [DNAFieldAttribute(8, "LinkData", 0, "*next", "LinkData", true, 0)] public LinkData next; [DNAFieldAttribute(8, "LinkData", 1, "*prev", "LinkData", true, 8)] public LinkData prev; [DNAFieldAttribute(8, "void", 2, "*data", "void", true, 16)] public object data; public LinkData() { this.next = default; this.prev = default; this.data = default; } public LinkData(LinkData next, LinkData prev, object data) { this.next = next; this.prev = prev; this.data = data; } } }