60 lines
2.3 KiB
C#
60 lines
2.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(37, "Library_Runtime")]
|
|
public class Library_Runtime {
|
|
[DNAFieldAttribute(0, "UniqueName_Map", "*name_map", 0)]
|
|
public UniqueName_Map ptr_name_map;
|
|
[DNAFieldAttribute(1, "FileData", "*filedata", 0)]
|
|
public FileData ptr_filedata;
|
|
[DNAFieldAttribute(2, "char", "filepath_abs[1024]", 1)]
|
|
public char[] filepath_abs = new System.Char[1024];
|
|
[DNAFieldAttribute(3, "Library", "*parent", 2304)]
|
|
public Library ptr_parent;
|
|
[DNAFieldAttribute(4, "ushort", "tag", 2)]
|
|
public ushort tag;
|
|
[DNAFieldAttribute(5, "char", "_pad[6]", 1)]
|
|
public char[] _pad = new System.Char[6];
|
|
[DNAFieldAttribute(6, "int", "temp_index", 4)]
|
|
public int temp_index;
|
|
[DNAFieldAttribute(7, "short", "versionfile", 2)]
|
|
public short versionfile;
|
|
[DNAFieldAttribute(8, "short", "subversionfile", 2)]
|
|
public short subversionfile;
|
|
public Library_Runtime() {
|
|
this.ptr_name_map = default;
|
|
this.ptr_filedata = default;
|
|
this.filepath_abs = default;
|
|
this.ptr_parent = default;
|
|
this.tag = default;
|
|
this._pad = default;
|
|
this.temp_index = default;
|
|
this.versionfile = default;
|
|
this.subversionfile = default;
|
|
}
|
|
public Library_Runtime(UniqueName_Map ptr_name_map, FileData ptr_filedata, char[] filepath_abs, Library ptr_parent, ushort tag, char[] _pad, int temp_index, short versionfile, short subversionfile) {
|
|
this.ptr_name_map = ptr_name_map;
|
|
this.ptr_filedata = ptr_filedata;
|
|
this.filepath_abs = filepath_abs;
|
|
this.ptr_parent = ptr_parent;
|
|
this.tag = tag;
|
|
this._pad = _pad;
|
|
this.temp_index = temp_index;
|
|
this.versionfile = versionfile;
|
|
this.subversionfile = subversionfile;
|
|
}
|
|
}
|
|
}
|