34 lines
1.2 KiB
C#
34 lines
1.2 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class PreviewImage {
|
|
public int[] w = new System.Int32[2];
|
|
public int[] h = new System.Int32[2];
|
|
public short[] flag = new System.Int16[2];
|
|
public short[] changed_timestamp = new System.Int16[2];
|
|
public int[] ptr_r = new System.Int32[2];
|
|
public PreviewImageRuntimeHandle ptr_runtime;
|
|
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;
|
|
}
|
|
}
|
|
}
|