Files
BlenderSharp/BlendFile/DNA/wmKeyMap.cs
2025-03-12 19:02:40 +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", 256)]
public class wmKeyMap {
[DNAFieldAttribute(8, "wmKeyMap", 0, "*next", "wmKeyMap", true, 0)]
public wmKeyMap next;
[DNAFieldAttribute(8, "wmKeyMap", 1, "*prev", "wmKeyMap", true, 8)]
public wmKeyMap prev;
[DNAFieldAttribute(16, "ListBase", 2, "items", "ListBase", false, 16)]
public ListBase items;
[DNAFieldAttribute(16, "ListBase", 3, "diff_items", "ListBase", false, 32)]
public ListBase diff_items;
[DNAArrayAttribute(64, "char", 4, "idname[64]", "System.Char[]", 64, false, 48)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(2, "short", 5, "spaceid", "short", false, 112)]
public short spaceid;
[DNAFieldAttribute(2, "short", 6, "regionid", "short", false, 114)]
public short regionid;
[DNAArrayAttribute(128, "char", 7, "owner_id[128]", "System.Char[]", 128, false, 116)]
public char[] owner_id = new System.Char[128];
[DNAFieldAttribute(2, "short", 8, "flag", "short", false, 244)]
public short flag;
[DNAFieldAttribute(2, "short", 9, "kmi_id", "short", false, 246)]
public short kmi_id;
[DNAFieldAttribute(8, "void", 12, "*modal_items", "void", true, 248)]
public object modal_items;
public wmKeyMap() {
this.next = default;
this.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.modal_items = default;
}
public wmKeyMap(wmKeyMap next, wmKeyMap prev, ListBase items, ListBase diff_items, char[] idname, short spaceid, short regionid, char[] owner_id, short flag, short kmi_id, object modal_items) {
this.next = next;
this.prev = 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.modal_items = modal_items;
}
}
}