Files
BlenderSharp/BlendFile/DNA/bMinMaxConstraint.cs
2025-01-22 20:24:55 +01:00

39 lines
1.3 KiB
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 {
using BlendFile;
public class bMinMaxConstraint {
[DNAFieldAttribute(0, "Object", "*tar", 1160)]
public Object ptr_tar;
[DNAFieldAttribute(1, "int", "minmaxflag", 4)]
public int minmaxflag;
[DNAFieldAttribute(2, "float", "offset", 4)]
public float offset;
[DNAFieldAttribute(3, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(4, "char", "subtarget[64]", 1)]
public char[] subtarget = new System.Char[64];
[DNAFieldAttribute(5, "int", "_pad", 4)]
public int _pad;
public bMinMaxConstraint(Object ptr_tar, int minmaxflag, float offset, int flag, char[] subtarget, int _pad) {
this.ptr_tar = ptr_tar;
this.minmaxflag = minmaxflag;
this.offset = offset;
this.flag = flag;
this.subtarget = subtarget;
this._pad = _pad;
}
}
}