//------------------------------------------------------------------------------ // // 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 class MaskLayerShape { [DNAFieldAttribute(0, "MaskLayerShape", "*next", 40)] public MaskLayerShape ptr_next; [DNAFieldAttribute(1, "MaskLayerShape", "*prev", 40)] public MaskLayerShape ptr_prev; [DNAFieldAttribute(2, "float", "*data", 4)] public float ptr_data; [DNAFieldAttribute(3, "int", "tot_vert", 4)] public int tot_vert; [DNAFieldAttribute(4, "int", "frame", 4)] public int frame; [DNAFieldAttribute(5, "char", "flag", 1)] public char flag; [DNAFieldAttribute(6, "char", "_pad[7]", 1)] public char[] _pad = new System.Char[7]; public MaskLayerShape(MaskLayerShape ptr_next, MaskLayerShape ptr_prev, float ptr_data, int tot_vert, int frame, char flag, char[] _pad) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_data = ptr_data; this.tot_vert = tot_vert; this.frame = frame; this.flag = flag; this._pad = _pad; } } }