Files
BlenderSharp/BlendFile/DNA/uiPreview.cs
2025-03-12 19:02:40 +01:00

48 lines
1.7 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(859, "uiPreview", 88)]
public class uiPreview {
[DNAFieldAttribute(8, "uiPreview", 0, "*next", "uiPreview", true, 0)]
public uiPreview next;
[DNAFieldAttribute(8, "uiPreview", 1, "*prev", "uiPreview", true, 8)]
public uiPreview prev;
[DNAArrayAttribute(64, "char", 2, "preview_id[64]", "System.Char[]", 64, false, 16)]
public char[] preview_id = new System.Char[64];
[DNAFieldAttribute(2, "short", 3, "height", "short", false, 80)]
public short height;
[DNAFieldAttribute(2, "short", 4, "tag", "short", false, 82)]
public short tag;
[DNAFieldAttribute(4, "int", 5, "id_session_uid", "int", false, 84)]
public int id_session_uid;
public uiPreview() {
this.next = default;
this.prev = default;
this.preview_id = default;
this.height = default;
this.tag = default;
this.id_session_uid = default;
}
public uiPreview(uiPreview next, uiPreview prev, char[] preview_id, short height, short tag, int id_session_uid) {
this.next = next;
this.prev = prev;
this.preview_id = preview_id;
this.height = height;
this.tag = tag;
this.id_session_uid = id_session_uid;
}
}
}