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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(17, "IDPropertyUIDataEnumItem", 32)]
public class IDPropertyUIDataEnumItem {
[DNAFieldAttribute(0, "char", "*identifier", "char", 8, true, 0)]
public char ptr_identifier;
[DNAFieldAttribute(1, "char", "*name", "char", 8, true, 8)]
public char ptr_name;
[DNAFieldAttribute(2, "char", "*description", "char", 8, true, 16)]
public char ptr_description;
[DNAFieldAttribute(3, "int", "value", "int", 4, false, 24)]
[DNAFieldAttribute(8, "char", 0, "*identifier", "char", true, 0)]
public char identifier;
[DNAFieldAttribute(8, "char", 1, "*name", "char", true, 8)]
public char name;
[DNAFieldAttribute(8, "char", 2, "*description", "char", true, 16)]
public char description;
[DNAFieldAttribute(4, "int", 3, "value", "int", false, 24)]
public int value;
[DNAFieldAttribute(4, "int", "icon", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 4, "icon", "int", false, 28)]
public int icon;
public IDPropertyUIDataEnumItem() {
this.ptr_identifier = default;
this.ptr_name = default;
this.ptr_description = default;
this.identifier = default;
this.name = default;
this.description = default;
this.value = default;
this.icon = default;
}
public IDPropertyUIDataEnumItem(char ptr_identifier, char ptr_name, char ptr_description, int value, int icon) {
this.ptr_identifier = ptr_identifier;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
public IDPropertyUIDataEnumItem(char identifier, char name, char description, int value, int icon) {
this.identifier = identifier;
this.name = name;
this.description = description;
this.value = value;
this.icon = icon;
}