Files
BlenderSharp/BlendFile/DNA/wmKeyMap.cs

48 lines
1.8 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 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class wmKeyMap {
public wmKeyMap ptr_next;
public wmKeyMap ptr_prev;
public ListBase items;
public ListBase diff_items;
public char[] idname = new System.Char[64];
public short spaceid;
public short regionid;
public char[] owner_id = new System.Char[128];
public short flag;
public short kmi_id;
public @bool (ptr_poll)();
public @bool (ptr_poll_modal_item)();
public object ptr_modal_items;
public wmKeyMap(wmKeyMap ptr_next, wmKeyMap ptr_prev, ListBase items, ListBase diff_items, char[] idname, short spaceid, short regionid, char[] owner_id, short flag, short kmi_id, @bool (ptr_poll)(), @bool (ptr_poll_modal_item)(), object ptr_modal_items) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.items = items;
this.diff_items = diff_items;
this.idname = idname;
this.spaceid = spaceid;
this.regionid = regionid;
this.owner_id = owner_id;
this.flag = flag;
this.kmi_id = kmi_id;
this.(ptr_poll)() = (ptr_poll)();
this.(ptr_poll_modal_item)() = (ptr_poll_modal_item)();
this.ptr_modal_items = ptr_modal_items;
}
}
}