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,40 +15,40 @@ namespace BlendFile.DNA {
[DNAClassAttribute(791, "PTCacheMem", 112)]
public class PTCacheMem {
[DNAFieldAttribute(0, "PTCacheMem", "*next", "PTCacheMem", 8, true, 0)]
public PTCacheMem ptr_next;
[DNAFieldAttribute(1, "PTCacheMem", "*prev", "PTCacheMem", 8, true, 8)]
public PTCacheMem ptr_prev;
[DNAFieldAttribute(2, "int", "frame", "int", 4, false, 16)]
[DNAFieldAttribute(8, "PTCacheMem", 0, "*next", "PTCacheMem", true, 0)]
public PTCacheMem next;
[DNAFieldAttribute(8, "PTCacheMem", 1, "*prev", "PTCacheMem", true, 8)]
public PTCacheMem prev;
[DNAFieldAttribute(4, "int", 2, "frame", "int", false, 16)]
public int frame;
[DNAFieldAttribute(3, "int", "totpoint", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 3, "totpoint", "int", false, 20)]
public int totpoint;
[DNAFieldAttribute(4, "int", "data_types", "int", 4, false, 24)]
[DNAFieldAttribute(4, "int", 4, "data_types", "int", false, 24)]
public int data_types;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 5, "flag", "int", false, 28)]
public int flag;
[DNAFieldAttribute(6, "void", "*data[8]", "System.Object[]", 64, true, 32)]
public object[] ptr_d = new System.Object[8];
[DNAFieldAttribute(7, "ListBase", "extradata", "ListBase", 16, false, 96)]
[DNAFieldAttribute(64, "void", 6, "*data[8]", "System.Object[]", true, 32)]
public object[] data = new System.Object[8];
[DNAFieldAttribute(16, "ListBase", 7, "extradata", "ListBase", false, 96)]
public ListBase extradata;
public PTCacheMem() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.frame = default;
this.totpoint = default;
this.data_types = default;
this.flag = default;
this.ptr_d = default;
this.data = default;
this.extradata = default;
}
public PTCacheMem(PTCacheMem ptr_next, PTCacheMem ptr_prev, int frame, int totpoint, int data_types, int flag, object[] ptr_d, ListBase extradata) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public PTCacheMem(PTCacheMem next, PTCacheMem prev, int frame, int totpoint, int data_types, int flag, object[] data, ListBase extradata) {
this.next = next;
this.prev = prev;
this.frame = frame;
this.totpoint = totpoint;
this.data_types = data_types;
this.flag = flag;
this.ptr_d = ptr_d;
this.data = data;
this.extradata = extradata;
}
}