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

17 lines
541 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bLocateLikeConstraint {
public Object ptr_tar;
public int flag;
public int reserved1;
public char[] subtarget = new System.Char[64];
public bLocateLikeConstraint(Object ptr_tar, int flag, int reserved1, char[] subtarget) {
this.ptr_tar = ptr_tar;
this.flag = flag;
this.reserved1 = reserved1;
this.subtarget = subtarget;
}
}
}