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