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,22 +15,22 @@ namespace BlendFile.DNA {
[DNAClassAttribute(23, "IDPropertyData", 32)]
public class IDPropertyData {
[DNAFieldAttribute(0, "void", "*pointer", "void", 8, true, 0)]
public object ptr_pointer;
[DNAFieldAttribute(1, "ListBase", "group", "ListBase", 16, false, 8)]
[DNAFieldAttribute(8, "void", 0, "*pointer", "void", true, 0)]
public object pointer;
[DNAFieldAttribute(16, "ListBase", 1, "group", "ListBase", false, 8)]
public ListBase group;
[DNAFieldAttribute(2, "int", "val", "int", 4, false, 24)]
[DNAFieldAttribute(4, "int", 2, "val", "int", false, 24)]
public int val;
[DNAFieldAttribute(3, "int", "val2", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 3, "val2", "int", false, 28)]
public int val2;
public IDPropertyData() {
this.ptr_pointer = default;
this.pointer = default;
this.group = default;
this.val = default;
this.val2 = default;
}
public IDPropertyData(object ptr_pointer, ListBase group, int val, int val2) {
this.ptr_pointer = ptr_pointer;
public IDPropertyData(object pointer, ListBase group, int val, int val2) {
this.pointer = pointer;
this.group = group;
this.val = val;
this.val2 = val2;