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,20 +15,20 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1067, "wmOwnerID", 144)]
public class wmOwnerID {
[DNAFieldAttribute(0, "wmOwnerID", "*next", "wmOwnerID", 8, true, 0)]
public wmOwnerID ptr_next;
[DNAFieldAttribute(1, "wmOwnerID", "*prev", "wmOwnerID", 8, true, 8)]
public wmOwnerID ptr_prev;
[DNAFieldAttribute(2, "char", "name[128]", "System.Char[]", 128, false, 16)]
[DNAFieldAttribute(8, "wmOwnerID", 0, "*next", "wmOwnerID", true, 0)]
public wmOwnerID next;
[DNAFieldAttribute(8, "wmOwnerID", 1, "*prev", "wmOwnerID", true, 8)]
public wmOwnerID prev;
[DNAFieldAttribute(128, "char", 2, "name[128]", "System.Char[]", false, 16)]
public char[] name = new System.Char[128];
public wmOwnerID() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.name = default;
}
public wmOwnerID(wmOwnerID ptr_next, wmOwnerID ptr_prev, char[] name) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public wmOwnerID(wmOwnerID next, wmOwnerID prev, char[] name) {
this.next = next;
this.prev = prev;
this.name = name;
}
}