Files
BlenderSharp/BlendFile/DNA/bArmatureConstraint.cs
2025-01-22 02:23:29 +01:00

15 lines
436 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct bArmatureConstraint {
public int flag;
public char[] _pad = new System.Char[4];
public ListBase targets;
public bArmatureConstraint(int flag, char[] _pad, ListBase targets) {
this.flag = flag;
this._pad = _pad;
this.targets = targets;
}
}
}