//------------------------------------------------------------------------------ // // 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(69, "bDopeSheet")] public class bDopeSheet { [DNAFieldAttribute(0, "ID", "*source", "ID", 208)] public ID ptr_source; [DNAFieldAttribute(1, "ListBase", "chanbase", "ListBase", 16)] public ListBase chanbase; [DNAFieldAttribute(2, "Collection", "*filter_grp", "Collection", 376)] public Collection ptr_filter_grp; [DNAFieldAttribute(3, "char", "searchstr[64]", "System.Char[]", 1)] public char[] searchstr = new System.Char[64]; [DNAFieldAttribute(4, "int", "filterflag", "int", 4)] public int filterflag; [DNAFieldAttribute(5, "int", "filterflag2", "int", 4)] public int filterflag2; [DNAFieldAttribute(6, "int", "flag", "int", 4)] public int flag; [DNAFieldAttribute(7, "int", "renameIndex", "int", 4)] public int renameIndex; public bDopeSheet() { this.ptr_source = default; this.chanbase = default; this.ptr_filter_grp = default; this.searchstr = default; this.filterflag = default; this.filterflag2 = default; this.flag = default; this.renameIndex = default; } public bDopeSheet(ID ptr_source, ListBase chanbase, Collection ptr_filter_grp, char[] searchstr, int filterflag, int filterflag2, int flag, int renameIndex) { this.ptr_source = ptr_source; this.chanbase = chanbase; this.ptr_filter_grp = ptr_filter_grp; this.searchstr = searchstr; this.filterflag = filterflag; this.filterflag2 = filterflag2; this.flag = flag; this.renameIndex = renameIndex; } } }