//------------------------------------------------------------------------------ // // 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 BlendFile.CompatTypes; using System; namespace BlendFile.DNA { public class FMod_Envelope { public FCM_EnvelopeData ptr_data; public int totvert; public float midval; public float min; public float max; public FMod_Envelope(FCM_EnvelopeData ptr_data, int totvert, float midval, float min, float max) { this.ptr_data = ptr_data; this.totvert = totvert; this.midval = midval; this.min = min; this.max = max; } } }