//------------------------------------------------------------------------------ // // 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(37, "Library_Runtime", 1064)] public class Library_Runtime { [DNAFieldAttribute(8, "UniqueName_Map", 0, "*name_map", "UniqueName_Map", true, 0)] public UniqueName_Map name_map; [DNAFieldAttribute(8, "FileData", 1, "*filedata", "FileData", true, 8)] public FileData filedata; [DNAArrayAttribute(1024, "char", 2, "filepath_abs[1024]", "System.Char[]", 1024, false, 16)] public char[] filepath_abs = new System.Char[1024]; [DNAFieldAttribute(8, "Library", 3, "*parent", "Library", true, 1040)] public Library parent; [DNAFieldAttribute(2, "ushort", 4, "tag", "ushort", false, 1048)] public ushort tag; [DNAArrayAttribute(6, "char", 5, "_pad[6]", "System.Char[]", 6, false, 1050)] public char[] _pad = new System.Char[6]; [DNAFieldAttribute(4, "int", 6, "temp_index", "int", false, 1056)] public int temp_index; [DNAFieldAttribute(2, "short", 7, "versionfile", "short", false, 1060)] public short versionfile; [DNAFieldAttribute(2, "short", 8, "subversionfile", "short", false, 1062)] public short subversionfile; public Library_Runtime() { this.name_map = default; this.filedata = default; this.filepath_abs = default; this.parent = default; this.tag = default; this._pad = default; this.temp_index = default; this.versionfile = default; this.subversionfile = default; } public Library_Runtime(UniqueName_Map name_map, FileData filedata, char[] filepath_abs, Library parent, ushort tag, char[] _pad, int temp_index, short versionfile, short subversionfile) { this.name_map = name_map; this.filedata = filedata; this.filepath_abs = filepath_abs; this.parent = parent; this.tag = tag; this._pad = _pad; this.temp_index = temp_index; this.versionfile = versionfile; this.subversionfile = subversionfile; } } }