Files
BlenderSharp/BlendFile/DNA/PreviewImage.cs
2025-02-19 18:48:50 +01:00

48 lines
1.9 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(41, "PreviewImage", 48)]
public class PreviewImage {
[DNAFieldAttribute(0, "int", "w[2]", "System.Int32[]", 8, false)]
public int[] w = new System.Int32[2];
[DNAFieldAttribute(1, "int", "h[2]", "System.Int32[]", 8, false)]
public int[] h = new System.Int32[2];
[DNAFieldAttribute(2, "short", "flag[2]", "System.Int16[]", 4, false)]
public short[] flag = new System.Int16[2];
[DNAFieldAttribute(3, "short", "changed_timestamp[2]", "System.Int16[]", 4, false)]
public short[] changed_timestamp = new System.Int16[2];
[DNAFieldAttribute(4, "int", "*rect[2]", "System.Int32[]", 16, true)]
public int[] ptr_r = new System.Int32[2];
[DNAFieldAttribute(5, "PreviewImageRuntimeHandle", "*runtime", "PreviewImageRuntimeHandle", 8, true)]
public PreviewImageRuntimeHandle ptr_runtime;
public PreviewImage() {
this.w = default;
this.h = default;
this.flag = default;
this.changed_timestamp = default;
this.ptr_r = default;
this.ptr_runtime = default;
}
public PreviewImage(int[] w, int[] h, short[] flag, short[] changed_timestamp, int[] ptr_r, PreviewImageRuntimeHandle ptr_runtime) {
this.w = w;
this.h = h;
this.flag = flag;
this.changed_timestamp = changed_timestamp;
this.ptr_r = ptr_r;
this.ptr_runtime = ptr_runtime;
}
}
}