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

36 lines
1.1 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(322, "ImageAnim", 24)]
public class ImageAnim {
[DNAFieldAttribute(8, "ImageAnim", 0, "*next", "ImageAnim", true, 0)]
public ImageAnim next;
[DNAFieldAttribute(8, "ImageAnim", 1, "*prev", "ImageAnim", true, 8)]
public ImageAnim prev;
[DNAFieldAttribute(8, "ImBufAnim", 2, "*anim", "ImBufAnim", true, 16)]
public ImBufAnim anim;
public ImageAnim() {
this.next = default;
this.prev = default;
this.anim = default;
}
public ImageAnim(ImageAnim next, ImageAnim prev, ImBufAnim anim) {
this.next = next;
this.prev = prev;
this.anim = anim;
}
}
}