//------------------------------------------------------------------------------ // // 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(75, "bActionChannel")] public class bActionChannel { [DNAFieldAttribute(0, "bActionChannel", "*next", "bActionChannel", 120)] public bActionChannel ptr_next; [DNAFieldAttribute(1, "bActionChannel", "*prev", "bActionChannel", 120)] public bActionChannel ptr_prev; [DNAFieldAttribute(2, "bActionGroup", "*grp", "bActionGroup", 136)] public bActionGroup ptr_grp; [DNAFieldAttribute(3, "Ipo", "*ipo", "Ipo", 248)] public Ipo ptr_ipo; [DNAFieldAttribute(4, "ListBase", "constraintChannels", "ListBase", 16)] public ListBase constraintChannels; [DNAFieldAttribute(5, "int", "flag", "int", 4)] public int flag; [DNAFieldAttribute(6, "char", "name[64]", "System.Char[]", 1)] public char[] name = new System.Char[64]; [DNAFieldAttribute(7, "int", "temp", "int", 4)] public int temp; public bActionChannel() { this.ptr_next = default; this.ptr_prev = default; this.ptr_grp = default; this.ptr_ipo = default; this.constraintChannels = default; this.flag = default; this.name = default; this.temp = default; } public bActionChannel(bActionChannel ptr_next, bActionChannel ptr_prev, bActionGroup ptr_grp, Ipo ptr_ipo, ListBase constraintChannels, int flag, char[] name, int temp) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_grp = ptr_grp; this.ptr_ipo = ptr_ipo; this.constraintChannels = constraintChannels; this.flag = flag; this.name = name; this.temp = temp; } } }