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(790, "PTCacheExtra", 32)]
public class PTCacheExtra {
[DNAFieldAttribute(0, "PTCacheExtra", "*next", "PTCacheExtra", 8, true, 0)]
public PTCacheExtra ptr_next;
[DNAFieldAttribute(1, "PTCacheExtra", "*prev", "PTCacheExtra", 8, true, 8)]
public PTCacheExtra ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
[DNAFieldAttribute(8, "PTCacheExtra", 0, "*next", "PTCacheExtra", true, 0)]
public PTCacheExtra next;
[DNAFieldAttribute(8, "PTCacheExtra", 1, "*prev", "PTCacheExtra", true, 8)]
public PTCacheExtra prev;
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 16)]
public int type;
[DNAFieldAttribute(3, "int", "totdata", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 3, "totdata", "int", false, 20)]
public int totdata;
[DNAFieldAttribute(4, "void", "*data", "void", 8, true, 24)]
public object ptr_data;
[DNAFieldAttribute(8, "void", 4, "*data", "void", true, 24)]
public object data;
public PTCacheExtra() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.totdata = default;
this.ptr_data = default;
this.data = default;
}
public PTCacheExtra(PTCacheExtra ptr_next, PTCacheExtra ptr_prev, int type, int totdata, object ptr_data) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public PTCacheExtra(PTCacheExtra next, PTCacheExtra prev, int type, int totdata, object data) {
this.next = next;
this.prev = prev;
this.type = type;
this.totdata = totdata;
this.ptr_data = ptr_data;
this.data = data;
}
}
}