Files
BlenderSharp/BlendFile/DNA/wmOperator.cs
2025-02-19 17:07:50 +01:00

80 lines
3.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(946, "wmOperator")]
public class wmOperator {
[DNAFieldAttribute(0, "wmOperator", "*next", "wmOperator", 4, true)]
public wmOperator ptr_next;
[DNAFieldAttribute(1, "wmOperator", "*prev", "wmOperator", 4, true)]
public wmOperator ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", "System.Char[]", 64, false)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(3, "IDProperty", "*properties", "IDProperty", 4, true)]
public IDProperty ptr_properties;
[DNAFieldAttribute(4, "wmOperatorType", "*type", "wmOperatorType", 4, true)]
public wmOperatorType ptr_type;
[DNAFieldAttribute(5, "void", "*customdata", "void", 4, true)]
public object ptr_customdata;
[DNAFieldAttribute(6, "void", "*py_instance", "void", 4, true)]
public object ptr_py_instance;
[DNAFieldAttribute(7, "PointerRNA", "*ptr", "PointerRNA", 4, true)]
public PointerRNA ptr_ptr;
[DNAFieldAttribute(8, "ReportList", "*reports", "ReportList", 4, true)]
public ReportList ptr_reports;
[DNAFieldAttribute(9, "ListBase", "macro", "ListBase", 16, false)]
public ListBase macro;
[DNAFieldAttribute(10, "wmOperator", "*opm", "wmOperator", 4, true)]
public wmOperator ptr_opm;
[DNAFieldAttribute(11, "uiLayout", "*layout", "uiLayout", 4, true)]
public uiLayout ptr_layout;
[DNAFieldAttribute(12, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(13, "char", "_pad[6]", "System.Char[]", 6, false)]
public char[] _pad = new System.Char[6];
public wmOperator() {
this.ptr_next = default;
this.ptr_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.macro = default;
this.ptr_opm = default;
this.ptr_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;
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.macro = macro;
this.ptr_opm = ptr_opm;
this.ptr_layout = ptr_layout;
this.flag = flag;
this._pad = _pad;
}
}
}