Files
BlenderSharp/BlendFile/DNA/PackedFile.cs
2025-03-04 18:48:04 +01:00

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(4, "int", 0, "size", "int", false, 0)]
public int size;
[DNAFieldAttribute(4, "int", 1, "seek", "int", false, 4)]
public int seek;
[DNAFieldAttribute(8, "void", 2, "*data", "void", true, 8)]
public object data;
[DNAFieldAttribute(8, "ImplicitSharingInfoHandle", 3, "*sharing_info", "ImplicitSharingInfoHandle", true, 16)]
public ImplicitSharingInfoHandle sharing_info;
public PackedFile() {
this.size = default;
this.seek = default;
this.data = default;
this.sharing_info = default;
}
public PackedFile(int size, int seek, object data, ImplicitSharingInfoHandle sharing_info) {
this.size = size;
this.seek = seek;
this.data = data;
this.sharing_info = sharing_info;
}
}
}