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