Files
BlenderSharp/BlendFile/DNA/Library_Runtime.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

38 lines
1.4 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 {
public class Library_Runtime {
public UniqueName_Map ptr_name_map;
public FileData ptr_filedata;
public char[] filepath_abs = new System.Char[1024];
public Library ptr_parent;
public ushort tag;
public char[] _pad = new System.Char[6];
public int temp_index;
public short versionfile;
public short subversionfile;
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;
}
}
}