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

68 lines
2.7 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(1061, "wmKeyMap")]
public class wmKeyMap {
[DNAFieldAttribute(0, "wmKeyMap", "*next", "wmKeyMap", 4, true)]
public wmKeyMap ptr_next;
[DNAFieldAttribute(1, "wmKeyMap", "*prev", "wmKeyMap", 4, true)]
public wmKeyMap ptr_prev;
[DNAFieldAttribute(2, "ListBase", "items", "ListBase", 16, false)]
public ListBase items;
[DNAFieldAttribute(3, "ListBase", "diff_items", "ListBase", 16, false)]
public ListBase diff_items;
[DNAFieldAttribute(4, "char", "idname[64]", "System.Char[]", 64, false)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(5, "short", "spaceid", "short", 2, false)]
public short spaceid;
[DNAFieldAttribute(6, "short", "regionid", "short", 2, false)]
public short regionid;
[DNAFieldAttribute(7, "char", "owner_id[128]", "System.Char[]", 128, false)]
public char[] owner_id = new System.Char[128];
[DNAFieldAttribute(8, "short", "flag", "short", 2, false)]
public short flag;
[DNAFieldAttribute(9, "short", "kmi_id", "short", 2, false)]
public short kmi_id;
[DNAFieldAttribute(12, "void", "*modal_items", "void", 4, true)]
public object ptr_modal_items;
public wmKeyMap() {
this.ptr_next = default;
this.ptr_prev = default;
this.items = default;
this.diff_items = default;
this.idname = default;
this.spaceid = default;
this.regionid = default;
this.owner_id = default;
this.flag = default;
this.kmi_id = default;
this.ptr_modal_items = default;
}
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;
}
}
}