68 lines
2.5 KiB
C#
68 lines
2.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 System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(1061, "wmKeyMap")]
|
|
public class wmKeyMap {
|
|
[DNAFieldAttribute(0, "wmKeyMap", "*next", 272)]
|
|
public wmKeyMap ptr_next;
|
|
[DNAFieldAttribute(1, "wmKeyMap", "*prev", 272)]
|
|
public wmKeyMap ptr_prev;
|
|
[DNAFieldAttribute(2, "ListBase", "items", 16)]
|
|
public ListBase items;
|
|
[DNAFieldAttribute(3, "ListBase", "diff_items", 16)]
|
|
public ListBase diff_items;
|
|
[DNAFieldAttribute(4, "char", "idname[64]", 1)]
|
|
public char[] idname = new System.Char[64];
|
|
[DNAFieldAttribute(5, "short", "spaceid", 2)]
|
|
public short spaceid;
|
|
[DNAFieldAttribute(6, "short", "regionid", 2)]
|
|
public short regionid;
|
|
[DNAFieldAttribute(7, "char", "owner_id[128]", 1)]
|
|
public char[] owner_id = new System.Char[128];
|
|
[DNAFieldAttribute(8, "short", "flag", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(9, "short", "kmi_id", 2)]
|
|
public short kmi_id;
|
|
[DNAFieldAttribute(12, "void", "*modal_items", 0)]
|
|
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;
|
|
}
|
|
}
|
|
}
|