Regenerated codefiles
This commit is contained in:
@@ -15,31 +15,31 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(1061, "wmKeyMap", 256)]
|
||||
public class wmKeyMap {
|
||||
[DNAFieldAttribute(0, "wmKeyMap", "*next", "wmKeyMap", 8, true, 0)]
|
||||
public wmKeyMap ptr_next;
|
||||
[DNAFieldAttribute(1, "wmKeyMap", "*prev", "wmKeyMap", 8, true, 8)]
|
||||
public wmKeyMap ptr_prev;
|
||||
[DNAFieldAttribute(2, "ListBase", "items", "ListBase", 16, false, 16)]
|
||||
[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(3, "ListBase", "diff_items", "ListBase", 16, false, 32)]
|
||||
[DNAFieldAttribute(16, "ListBase", 3, "diff_items", "ListBase", false, 32)]
|
||||
public ListBase diff_items;
|
||||
[DNAFieldAttribute(4, "char", "idname[64]", "System.Char[]", 64, false, 48)]
|
||||
[DNAFieldAttribute(64, "char", 4, "idname[64]", "System.Char[]", false, 48)]
|
||||
public char[] idname = new System.Char[64];
|
||||
[DNAFieldAttribute(5, "short", "spaceid", "short", 2, false, 112)]
|
||||
[DNAFieldAttribute(2, "short", 5, "spaceid", "short", false, 112)]
|
||||
public short spaceid;
|
||||
[DNAFieldAttribute(6, "short", "regionid", "short", 2, false, 114)]
|
||||
[DNAFieldAttribute(2, "short", 6, "regionid", "short", false, 114)]
|
||||
public short regionid;
|
||||
[DNAFieldAttribute(7, "char", "owner_id[128]", "System.Char[]", 128, false, 116)]
|
||||
[DNAFieldAttribute(128, "char", 7, "owner_id[128]", "System.Char[]", false, 116)]
|
||||
public char[] owner_id = new System.Char[128];
|
||||
[DNAFieldAttribute(8, "short", "flag", "short", 2, false, 244)]
|
||||
[DNAFieldAttribute(2, "short", 8, "flag", "short", false, 244)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(9, "short", "kmi_id", "short", 2, false, 246)]
|
||||
[DNAFieldAttribute(2, "short", 9, "kmi_id", "short", false, 246)]
|
||||
public short kmi_id;
|
||||
[DNAFieldAttribute(12, "void", "*modal_items", "void", 8, true, 248)]
|
||||
public object ptr_modal_items;
|
||||
[DNAFieldAttribute(8, "void", 12, "*modal_items", "void", true, 248)]
|
||||
public object modal_items;
|
||||
public wmKeyMap() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.items = default;
|
||||
this.diff_items = default;
|
||||
this.idname = default;
|
||||
@@ -48,11 +48,11 @@ namespace BlendFile.DNA {
|
||||
this.owner_id = default;
|
||||
this.flag = default;
|
||||
this.kmi_id = default;
|
||||
this.ptr_modal_items = default;
|
||||
this.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;
|
||||
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;
|
||||
@@ -61,7 +61,7 @@ namespace BlendFile.DNA {
|
||||
this.owner_id = owner_id;
|
||||
this.flag = flag;
|
||||
this.kmi_id = kmi_id;
|
||||
this.ptr_modal_items = ptr_modal_items;
|
||||
this.modal_items = modal_items;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user