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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(774, "TreeStoreElem", 16)]
public class TreeStoreElem {
[DNAFieldAttribute(0, "short", "type", "short", 2, false, 0)]
[DNAFieldAttribute(2, "short", 0, "type", "short", false, 0)]
public short type;
[DNAFieldAttribute(1, "short", "nr", "short", 2, false, 2)]
[DNAFieldAttribute(2, "short", 1, "nr", "short", false, 2)]
public short nr;
[DNAFieldAttribute(2, "short", "flag", "short", 2, false, 4)]
[DNAFieldAttribute(2, "short", 2, "flag", "short", false, 4)]
public short flag;
[DNAFieldAttribute(3, "short", "used", "short", 2, false, 6)]
[DNAFieldAttribute(2, "short", 3, "used", "short", false, 6)]
public short used;
[DNAFieldAttribute(4, "ID", "*id", "ID", 8, true, 8)]
public ID ptr_id;
[DNAFieldAttribute(8, "ID", 4, "*id", "ID", true, 8)]
public ID id;
public TreeStoreElem() {
this.type = default;
this.nr = default;
this.flag = default;
this.used = default;
this.ptr_id = default;
this.id = default;
}
public TreeStoreElem(short type, short nr, short flag, short used, ID ptr_id) {
public TreeStoreElem(short type, short nr, short flag, short used, ID id) {
this.type = type;
this.nr = nr;
this.flag = flag;
this.used = used;
this.ptr_id = ptr_id;
this.id = id;
}
}
}