//------------------------------------------------------------------------------ // // 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; public struct ScrAreaMap { [DNAFieldAttribute(0, "ListBase", "vertbase", 16)] public ListBase vertbase; [DNAFieldAttribute(1, "ListBase", "edgebase", 16)] public ListBase edgebase; [DNAFieldAttribute(2, "ListBase", "areabase", 16)] public ListBase areabase; public ScrAreaMap(ListBase vertbase, ListBase edgebase, ListBase areabase) { this.vertbase = vertbase; this.edgebase = edgebase; this.areabase = areabase; } } }