Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(322, "ImageAnim", 24)]
public class ImageAnim {
[DNAFieldAttribute(0, "ImageAnim", "*next", "ImageAnim", 8, true, 0)]
public ImageAnim ptr_next;
[DNAFieldAttribute(1, "ImageAnim", "*prev", "ImageAnim", 8, true, 8)]
public ImageAnim ptr_prev;
[DNAFieldAttribute(2, "ImBufAnim", "*anim", "ImBufAnim", 8, true, 16)]
public ImBufAnim ptr_anim;
[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.ptr_next = default;
this.ptr_prev = default;
this.ptr_anim = default;
this.next = default;
this.prev = default;
this.anim = default;
}
public ImageAnim(ImageAnim ptr_next, ImageAnim ptr_prev, ImBufAnim ptr_anim) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_anim = ptr_anim;
public ImageAnim(ImageAnim next, ImageAnim prev, ImBufAnim anim) {
this.next = next;
this.prev = prev;
this.anim = anim;
}
}
}