Files
BlenderSharp/BlendFile/DNA/ImageView.cs
2025-03-12 19:02:40 +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(324, "ImageView", 1104)]
public class ImageView {
[DNAFieldAttribute(8, "ImageView", 0, "*next", "ImageView", true, 0)]
public ImageView next;
[DNAFieldAttribute(8, "ImageView", 1, "*prev", "ImageView", true, 8)]
public ImageView prev;
[DNAArrayAttribute(64, "char", 2, "name[64]", "System.Char[]", 64, false, 16)]
public char[] name = new System.Char[64];
[DNAArrayAttribute(1024, "char", 3, "filepath[1024]", "System.Char[]", 1024, false, 80)]
public char[] filepath = new System.Char[1024];
public ImageView() {
this.next = default;
this.prev = default;
this.name = default;
this.filepath = default;
}
public ImageView(ImageView next, ImageView prev, char[] name, char[] filepath) {
this.next = next;
this.prev = prev;
this.name = name;
this.filepath = filepath;
}
}
}