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,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(16, "IDPropertyUIData", 16)]
public class IDPropertyUIData {
[DNAFieldAttribute(0, "char", "*description", "char", 8, true, 0)]
public char ptr_description;
[DNAFieldAttribute(1, "int", "rna_subtype", "int", 4, false, 8)]
[DNAFieldAttribute(8, "char", 0, "*description", "char", true, 0)]
public char description;
[DNAFieldAttribute(4, "int", 1, "rna_subtype", "int", false, 8)]
public int rna_subtype;
[DNAFieldAttribute(2, "char", "_pad[4]", "System.Char[]", 4, false, 12)]
[DNAFieldAttribute(4, "char", 2, "_pad[4]", "System.Char[]", false, 12)]
public char[] _pad = new System.Char[4];
public IDPropertyUIData() {
this.ptr_description = default;
this.description = default;
this.rna_subtype = default;
this._pad = default;
}
public IDPropertyUIData(char ptr_description, int rna_subtype, char[] _pad) {
this.ptr_description = ptr_description;
public IDPropertyUIData(char description, int rna_subtype, char[] _pad) {
this.description = description;
this.rna_subtype = rna_subtype;
this._pad = _pad;
}