//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(171, "bConstraintChannel", 56)] public class bConstraintChannel { [DNAFieldAttribute(0, "bConstraintChannel", "*next", "bConstraintChannel", 8, true, 0)] public bConstraintChannel ptr_next; [DNAFieldAttribute(1, "bConstraintChannel", "*prev", "bConstraintChannel", 8, true, 8)] public bConstraintChannel ptr_prev; [DNAFieldAttribute(2, "Ipo", "*ipo", "Ipo", 8, true, 16)] public Ipo ptr_ipo; [DNAFieldAttribute(3, "short", "flag", "short", 2, false, 24)] public short flag; [DNAFieldAttribute(4, "char", "name[30]", "System.Char[]", 30, false, 26)] public char[] name = new System.Char[30]; public bConstraintChannel() { this.ptr_next = default; this.ptr_prev = default; this.ptr_ipo = default; this.flag = default; this.name = default; } 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; } } }