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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(697, "NodeEnumItem", 24)]
public class NodeEnumItem {
[DNAFieldAttribute(0, "char", "*name", "char", 8, true, 0)]
public char ptr_name;
[DNAFieldAttribute(1, "char", "*description", "char", 8, true, 8)]
public char ptr_description;
[DNAFieldAttribute(2, "int", "identifier", "int", 4, false, 16)]
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
public char name;
[DNAFieldAttribute(8, "char", 1, "*description", "char", true, 8)]
public char description;
[DNAFieldAttribute(4, "int", 2, "identifier", "int", false, 16)]
public int identifier;
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false, 20)]
[DNAFieldAttribute(4, "char", 3, "_pad[4]", "System.Char[]", false, 20)]
public char[] _pad = new System.Char[4];
public NodeEnumItem() {
this.ptr_name = default;
this.ptr_description = default;
this.name = default;
this.description = default;
this.identifier = default;
this._pad = default;
}
public NodeEnumItem(char ptr_name, char ptr_description, int identifier, char[] _pad) {
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
public NodeEnumItem(char name, char description, int identifier, char[] _pad) {
this.name = name;
this.description = description;
this.identifier = identifier;
this._pad = _pad;
}