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