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

36 lines
1.2 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 bConstraintChannel {
[DNAFieldAttribute(0, "bConstraintChannel", "*next", 56)]
public bConstraintChannel ptr_next;
[DNAFieldAttribute(1, "bConstraintChannel", "*prev", 56)]
public bConstraintChannel ptr_prev;
[DNAFieldAttribute(2, "Ipo", "*ipo", 248)]
public Ipo ptr_ipo;
[DNAFieldAttribute(3, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(4, "char", "name[30]", 1)]
public char[] name = new System.Char[30];
public bConstraintChannel(bConstraintChannel ptr_next, bConstraintChannel ptr_prev, Ipo ptr_ipo, short flag, char[] name) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_ipo = ptr_ipo;
this.flag = flag;
this.name = name;
}
}
}