//------------------------------------------------------------------------------ // // 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(34, "Library", 2304)] public class Library { [DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)] public ID id; [DNAArrayAttribute(1024, "char", 1, "name[1024]", "System.Char[]", 1024, false, 208)] public char[] name = new System.Char[1024]; [DNAFieldAttribute(8, "PackedFile", 2, "*packedfile", "PackedFile", true, 1232)] public PackedFile packedfile; [DNAFieldAttribute(1064, "Library_Runtime", 3, "runtime", "Library_Runtime", false, 1240)] public Library_Runtime runtime; public Library() { this.id = default; this.name = default; this.packedfile = default; this.runtime = default; } public Library(ID id, char[] name, PackedFile packedfile, Library_Runtime runtime) { this.id = id; this.name = name; this.packedfile = packedfile; this.runtime = runtime; } } }