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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(404, "Link", 16)]
public class Link {
[DNAFieldAttribute(0, "Link", "*next", "Link", 8, true, 0)]
public Link ptr_next;
[DNAFieldAttribute(1, "Link", "*prev", "Link", 8, true, 8)]
public Link ptr_prev;
[DNAFieldAttribute(8, "Link", 0, "*next", "Link", true, 0)]
public Link next;
[DNAFieldAttribute(8, "Link", 1, "*prev", "Link", true, 8)]
public Link prev;
public Link() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
}
public Link(Link ptr_next, Link ptr_prev) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public Link(Link next, Link prev) {
this.next = next;
this.prev = prev;
}
}
}