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,12 +11,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct bUserMenuItem_Prop {
[DNAFieldAttribute(0, "bUserMenuItem", "item", 88)]
public bUserMenuItem item;
[DNAFieldAttribute(1, "char", "context_data_path[256]", 1)]
public char[] context_data_path = new System.Char[256];
[DNAFieldAttribute(2, "char", "prop_id[64]", 1)]
public char[] prop_id = new System.Char[64];
[DNAFieldAttribute(3, "int", "prop_index", 4)]
public int prop_index;
[DNAFieldAttribute(4, "char", "_pad0[4]", 1)]
public char[] _pad0 = new System.Char[4];
public bUserMenuItem_Prop(bUserMenuItem item, char[] context_data_path, char[] prop_id, int prop_index, char[] _pad0) {
this.item = item;