Regenerated code files

This commit is contained in:
Samuele Lorefice
2025-03-07 19:13:29 +01:00
parent 26add1559f
commit 73e98f5c5d
10 changed files with 163 additions and 163 deletions

View File

@@ -17,23 +17,23 @@ namespace BlendFile.DNA {
public class IDPropertyUIDataBool {
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
public IDPropertyUIData @base;
[DNAFieldAttribute(3, "char", 3, "_pad[3]", "System.Char[]", false, 16)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(1, "int8_t", 4, "default_value", "int8_t", false, 19)]
public sbyte default_value;
[DNAListAttribute(8, "int8_t", "*default_array", 1, "int8_t", "int", "default_array_len", 2, 20, 0)]
[DNAListAttribute(8, "int8_t", "*default_array", 1, "int8_t", 24, "default_array_len", 2, 16, 0)]
public System.Collections.Generic.List<sbyte> default_array;
[DNAFieldAttribute(3, "char", 3, "_pad[3]", "System.Char[]", false, 28)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(1, "int8_t", 4, "default_value", "int8_t", false, 31)]
public sbyte default_value;
public IDPropertyUIDataBool() {
this.@base = default;
this.default_array = default;
this._pad = default;
this.default_value = default;
this.default_array = default;
}
public IDPropertyUIDataBool(IDPropertyUIData @base, char[] _pad, sbyte default_value, System.Collections.Generic.List<sbyte> default_array) {
public IDPropertyUIDataBool(IDPropertyUIData @base, System.Collections.Generic.List<sbyte> default_array, char[] _pad, sbyte default_value) {
this.@base = @base;
this.default_array = default_array;
this._pad = _pad;
this.default_value = default_value;
this.default_array = default_array;
}
}
}