50 lines
1.9 KiB
C#
50 lines
1.9 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class wmOperator {
|
|
public wmOperator ptr_next;
|
|
public wmOperator ptr_prev;
|
|
public char[] idname = new System.Char[64];
|
|
public IDProperty ptr_properties;
|
|
public wmOperatorType ptr_type;
|
|
public object ptr_customdata;
|
|
public object ptr_py_instance;
|
|
public PointerRNA ptr_ptr;
|
|
public ReportList ptr_reports;
|
|
public ListBase macro;
|
|
public wmOperator ptr_opm;
|
|
public uiLayout ptr_layout;
|
|
public short flag;
|
|
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;
|
|
}
|
|
}
|
|
}
|