Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class PTCacheMem {
[DNAFieldAttribute(0, "PTCacheMem", "*next", 112)]
public PTCacheMem ptr_next;
[DNAFieldAttribute(1, "PTCacheMem", "*prev", 112)]
public PTCacheMem ptr_prev;
[DNAFieldAttribute(2, "int", "frame", 4)]
public int frame;
[DNAFieldAttribute(3, "int", "totpoint", 4)]
public int totpoint;
[DNAFieldAttribute(4, "int", "data_types", 4)]
public int data_types;
[DNAFieldAttribute(5, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(6, "void", "*data[8]", 0)]
public object[] ptr_d = new System.Object[8];
[DNAFieldAttribute(7, "ListBase", "extradata", 16)]
public ListBase extradata;
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;