Files
BlenderSharp/BlendFile/DNA/wmKeyMap.cs

44 lines
1.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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
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 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, 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_modal_items = ptr_modal_items;
}
}
}