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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1000, "bUserMenu", 104)]
public class bUserMenu {
[DNAFieldAttribute(0, "bUserMenu", "*next", "bUserMenu", 8, true, 0)]
public bUserMenu ptr_next;
[DNAFieldAttribute(1, "bUserMenu", "*prev", "bUserMenu", 8, true, 8)]
public bUserMenu ptr_prev;
[DNAFieldAttribute(2, "char", "space_type", "char", 1, false, 16)]
[DNAFieldAttribute(8, "bUserMenu", 0, "*next", "bUserMenu", true, 0)]
public bUserMenu next;
[DNAFieldAttribute(8, "bUserMenu", 1, "*prev", "bUserMenu", true, 8)]
public bUserMenu prev;
[DNAFieldAttribute(1, "char", 2, "space_type", "char", false, 16)]
public char space_type;
[DNAFieldAttribute(3, "char", "_pad0[7]", "System.Char[]", 7, false, 17)]
[DNAFieldAttribute(7, "char", 3, "_pad0[7]", "System.Char[]", false, 17)]
public char[] _pad0 = new System.Char[7];
[DNAFieldAttribute(4, "char", "context[64]", "System.Char[]", 64, false, 24)]
[DNAFieldAttribute(64, "char", 4, "context[64]", "System.Char[]", false, 24)]
public char[] context = new System.Char[64];
[DNAFieldAttribute(5, "ListBase", "items", "ListBase", 16, false, 88)]
[DNAFieldAttribute(16, "ListBase", 5, "items", "ListBase", false, 88)]
public ListBase items;
public bUserMenu() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.space_type = default;
this._pad0 = default;
this.context = default;
this.items = default;
}
public bUserMenu(bUserMenu ptr_next, bUserMenu ptr_prev, char space_type, char[] _pad0, char[] context, ListBase items) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bUserMenu(bUserMenu next, bUserMenu prev, char space_type, char[] _pad0, char[] context, ListBase items) {
this.next = next;
this.prev = prev;
this.space_type = space_type;
this._pad0 = _pad0;
this.context = context;