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,63 +15,63 @@ namespace BlendFile.DNA {
[DNAClassAttribute(946, "wmOperator", 168)]
public class wmOperator {
[DNAFieldAttribute(0, "wmOperator", "*next", "wmOperator", 8, true, 0)]
public wmOperator ptr_next;
[DNAFieldAttribute(1, "wmOperator", "*prev", "wmOperator", 8, true, 8)]
public wmOperator ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", "System.Char[]", 64, false, 16)]
[DNAFieldAttribute(8, "wmOperator", 0, "*next", "wmOperator", true, 0)]
public wmOperator next;
[DNAFieldAttribute(8, "wmOperator", 1, "*prev", "wmOperator", true, 8)]
public wmOperator prev;
[DNAFieldAttribute(64, "char", 2, "idname[64]", "System.Char[]", false, 16)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(3, "IDProperty", "*properties", "IDProperty", 8, true, 80)]
public IDProperty ptr_properties;
[DNAFieldAttribute(4, "wmOperatorType", "*type", "wmOperatorType", 8, true, 88)]
public wmOperatorType ptr_type;
[DNAFieldAttribute(5, "void", "*customdata", "void", 8, true, 96)]
public object ptr_customdata;
[DNAFieldAttribute(6, "void", "*py_instance", "void", 8, true, 104)]
public object ptr_py_instance;
[DNAFieldAttribute(7, "PointerRNA", "*ptr", "PointerRNA", 8, true, 112)]
public PointerRNA ptr_ptr;
[DNAFieldAttribute(8, "ReportList", "*reports", "ReportList", 8, true, 120)]
public ReportList ptr_reports;
[DNAFieldAttribute(9, "ListBase", "macro", "ListBase", 16, false, 128)]
[DNAFieldAttribute(8, "IDProperty", 3, "*properties", "IDProperty", true, 80)]
public IDProperty properties;
[DNAFieldAttribute(8, "wmOperatorType", 4, "*type", "wmOperatorType", true, 88)]
public wmOperatorType type;
[DNAFieldAttribute(8, "void", 5, "*customdata", "void", true, 96)]
public object customdata;
[DNAFieldAttribute(8, "void", 6, "*py_instance", "void", true, 104)]
public object py_instance;
[DNAFieldAttribute(8, "PointerRNA", 7, "*ptr", "PointerRNA", true, 112)]
public PointerRNA ptr;
[DNAFieldAttribute(8, "ReportList", 8, "*reports", "ReportList", true, 120)]
public ReportList reports;
[DNAFieldAttribute(16, "ListBase", 9, "macro", "ListBase", false, 128)]
public ListBase macro;
[DNAFieldAttribute(10, "wmOperator", "*opm", "wmOperator", 8, true, 144)]
public wmOperator ptr_opm;
[DNAFieldAttribute(11, "uiLayout", "*layout", "uiLayout", 8, true, 152)]
public uiLayout ptr_layout;
[DNAFieldAttribute(12, "short", "flag", "short", 2, false, 160)]
[DNAFieldAttribute(8, "wmOperator", 10, "*opm", "wmOperator", true, 144)]
public wmOperator opm;
[DNAFieldAttribute(8, "uiLayout", 11, "*layout", "uiLayout", true, 152)]
public uiLayout layout;
[DNAFieldAttribute(2, "short", 12, "flag", "short", false, 160)]
public short flag;
[DNAFieldAttribute(13, "char", "_pad[6]", "System.Char[]", 6, false, 162)]
[DNAFieldAttribute(6, "char", 13, "_pad[6]", "System.Char[]", false, 162)]
public char[] _pad = new System.Char[6];
public wmOperator() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.idname = default;
this.ptr_properties = default;
this.ptr_type = default;
this.ptr_customdata = default;
this.ptr_py_instance = default;
this.ptr_ptr = default;
this.ptr_reports = default;
this.properties = default;
this.type = default;
this.customdata = default;
this.py_instance = default;
this.ptr = default;
this.reports = default;
this.macro = default;
this.ptr_opm = default;
this.ptr_layout = default;
this.opm = default;
this.layout = default;
this.flag = default;
this._pad = default;
}
public wmOperator(wmOperator ptr_next, wmOperator ptr_prev, char[] idname, IDProperty ptr_properties, wmOperatorType ptr_type, object ptr_customdata, object ptr_py_instance, PointerRNA ptr_ptr, ReportList ptr_reports, ListBase macro, wmOperator ptr_opm, uiLayout ptr_layout, short flag, char[] _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public wmOperator(wmOperator next, wmOperator prev, char[] idname, IDProperty properties, wmOperatorType type, object customdata, object py_instance, PointerRNA ptr, ReportList reports, ListBase macro, wmOperator opm, uiLayout layout, short flag, char[] _pad) {
this.next = next;
this.prev = prev;
this.idname = idname;
this.ptr_properties = ptr_properties;
this.ptr_type = ptr_type;
this.ptr_customdata = ptr_customdata;
this.ptr_py_instance = ptr_py_instance;
this.ptr_ptr = ptr_ptr;
this.ptr_reports = ptr_reports;
this.properties = properties;
this.type = type;
this.customdata = customdata;
this.py_instance = py_instance;
this.ptr = ptr;
this.reports = reports;
this.macro = macro;
this.ptr_opm = ptr_opm;
this.ptr_layout = ptr_layout;
this.opm = opm;
this.layout = layout;
this.flag = flag;
this._pad = _pad;
}