//------------------------------------------------------------------------------ // // 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(97, "NlaTrack", 104)] public class NlaTrack { [DNAFieldAttribute(8, "NlaTrack", 0, "*next", "NlaTrack", true, 0)] public NlaTrack next; [DNAFieldAttribute(8, "NlaTrack", 1, "*prev", "NlaTrack", true, 8)] public NlaTrack prev; [DNAFieldAttribute(16, "ListBase", 2, "strips", "ListBase", false, 16)] public ListBase strips; [DNAFieldAttribute(4, "int", 3, "flag", "int", false, 32)] public int flag; [DNAFieldAttribute(4, "int", 4, "index", "int", false, 36)] public int index; [DNAArrayAttribute(64, "char", 5, "name[64]", "System.Char[]", 64, 40)] public char[] name = new System.Char[64]; public NlaTrack() { this.next = default; this.prev = default; this.strips = default; this.flag = default; this.index = default; this.name = default; } public NlaTrack(NlaTrack next, NlaTrack prev, ListBase strips, int flag, int index, char[] name) { this.next = next; this.prev = prev; this.strips = strips; this.flag = flag; this.index = index; this.name = name; } } }