40 lines
1.4 KiB
C#
40 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 {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(40, "PackedFile", 24)]
|
|
public class PackedFile {
|
|
[DNAFieldAttribute(0, "int", "size", "int", 4, false)]
|
|
public int size;
|
|
[DNAFieldAttribute(1, "int", "seek", "int", 4, false)]
|
|
public int seek;
|
|
[DNAFieldAttribute(2, "void", "*data", "void", 8, true)]
|
|
public object ptr_data;
|
|
[DNAFieldAttribute(3, "ImplicitSharingInfoHandle", "*sharing_info", "ImplicitSharingInfoHandle", 8, true)]
|
|
public ImplicitSharingInfoHandle ptr_sharing_info;
|
|
public PackedFile() {
|
|
this.size = default;
|
|
this.seek = default;
|
|
this.ptr_data = default;
|
|
this.ptr_sharing_info = default;
|
|
}
|
|
public PackedFile(int size, int seek, object ptr_data, ImplicitSharingInfoHandle ptr_sharing_info) {
|
|
this.size = size;
|
|
this.seek = seek;
|
|
this.ptr_data = ptr_data;
|
|
this.ptr_sharing_info = ptr_sharing_info;
|
|
}
|
|
}
|
|
}
|