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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bUserMenu {
[DNAFieldAttribute(0, "bUserMenu", "*next", 104)]
public bUserMenu ptr_next;
[DNAFieldAttribute(1, "bUserMenu", "*prev", 104)]
public bUserMenu ptr_prev;
[DNAFieldAttribute(2, "char", "space_type", 1)]
public char space_type;
[DNAFieldAttribute(3, "char", "_pad0[7]", 1)]
public char[] _pad0 = new System.Char[7];
[DNAFieldAttribute(4, "char", "context[64]", 1)]
public char[] context = new System.Char[64];
[DNAFieldAttribute(5, "ListBase", "items", 16)]
public ListBase items;
public bUserMenu(bUserMenu ptr_next, bUserMenu ptr_prev, char space_type, char[] _pad0, char[] context, ListBase items) {
this.ptr_next = ptr_next;