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(1030, "ViewerPathElem")]
[DNAClassAttribute(1030, "ViewerPathElem", 32)]
public class ViewerPathElem {
[DNAFieldAttribute(0, "ViewerPathElem", "*next", "ViewerPathElem", 4, true)]
[DNAFieldAttribute(0, "ViewerPathElem", "*next", "ViewerPathElem", 8, true)]
public ViewerPathElem ptr_next;
[DNAFieldAttribute(1, "ViewerPathElem", "*prev", "ViewerPathElem", 4, true)]
[DNAFieldAttribute(1, "ViewerPathElem", "*prev", "ViewerPathElem", 8, true)]
public ViewerPathElem ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false)]
public int type;
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(4, "char", "*ui_name", "char", 4, true)]
[DNAFieldAttribute(4, "char", "*ui_name", "char", 8, true)]
public char ptr_ui_name;
public ViewerPathElem() {
this.ptr_next = default;