30 lines
815 B
C#
30 lines
815 B
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public struct FCM_EnvelopeData {
|
|
public float min;
|
|
public float max;
|
|
public float time;
|
|
public short f1;
|
|
public short f2;
|
|
public FCM_EnvelopeData(float min, float max, float time, short f1, short f2) {
|
|
this.min = min;
|
|
this.max = max;
|
|
this.time = time;
|
|
this.f1 = f1;
|
|
this.f2 = f2;
|
|
}
|
|
}
|
|
}
|