regenerate files

This commit is contained in:
mm00
2025-02-19 18:48:50 +01:00
parent 33a8f1baf3
commit b66247488e
937 changed files with 2572 additions and 2562 deletions

View File

@@ -13,17 +13,17 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(790, "PTCacheExtra")]
[DNAClassAttribute(790, "PTCacheExtra", 32)]
public class PTCacheExtra {
[DNAFieldAttribute(0, "PTCacheExtra", "*next", "PTCacheExtra", 4, true)]
[DNAFieldAttribute(0, "PTCacheExtra", "*next", "PTCacheExtra", 8, true)]
public PTCacheExtra ptr_next;
[DNAFieldAttribute(1, "PTCacheExtra", "*prev", "PTCacheExtra", 4, true)]
[DNAFieldAttribute(1, "PTCacheExtra", "*prev", "PTCacheExtra", 8, true)]
public PTCacheExtra ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false)]
public int type;
[DNAFieldAttribute(3, "int", "totdata", "int", 4, false)]
public int totdata;
[DNAFieldAttribute(4, "void", "*data", "void", 4, true)]
[DNAFieldAttribute(4, "void", "*data", "void", 8, true)]
public object ptr_data;
public PTCacheExtra() {
this.ptr_next = default;