//------------------------------------------------------------------------------ // // 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(24, "ListBase", 16)] public class ListBase { [DNAFieldAttribute(8, "void", 0, "*first", "void", true, 0)] public object first; [DNAFieldAttribute(8, "void", 1, "*last", "void", true, 8)] public object last; public ListBase() { this.first = default; this.last = default; } public ListBase(object first, object last) { this.first = first; this.last = last; } } }