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,26 +15,26 @@ namespace BlendFile.DNA {
[DNAClassAttribute(141, "CacheFileLayer", 1048)]
public class CacheFileLayer {
[DNAFieldAttribute(0, "CacheFileLayer", "*next", "CacheFileLayer", 8, true, 0)]
public CacheFileLayer ptr_next;
[DNAFieldAttribute(1, "CacheFileLayer", "*prev", "CacheFileLayer", 8, true, 8)]
public CacheFileLayer ptr_prev;
[DNAFieldAttribute(2, "char", "filepath[1024]", "System.Char[]", 1024, false, 16)]
[DNAFieldAttribute(8, "CacheFileLayer", 0, "*next", "CacheFileLayer", true, 0)]
public CacheFileLayer next;
[DNAFieldAttribute(8, "CacheFileLayer", 1, "*prev", "CacheFileLayer", true, 8)]
public CacheFileLayer prev;
[DNAFieldAttribute(1024, "char", 2, "filepath[1024]", "System.Char[]", false, 16)]
public char[] filepath = new System.Char[1024];
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 1040)]
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 1040)]
public int flag;
[DNAFieldAttribute(4, "int", "_pad", "int", 4, false, 1044)]
[DNAFieldAttribute(4, "int", 4, "_pad", "int", false, 1044)]
public int _pad;
public CacheFileLayer() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.filepath = default;
this.flag = default;
this._pad = default;
}
public CacheFileLayer(CacheFileLayer ptr_next, CacheFileLayer ptr_prev, char[] filepath, int flag, int _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public CacheFileLayer(CacheFileLayer next, CacheFileLayer prev, char[] filepath, int flag, int _pad) {
this.next = next;
this.prev = prev;
this.filepath = filepath;
this.flag = flag;
this._pad = _pad;