40 lines
1.6 KiB
C#
40 lines
1.6 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(1060, "wmKeyMapDiffItem", 32)]
|
|
public class wmKeyMapDiffItem {
|
|
[DNAFieldAttribute(0, "wmKeyMapDiffItem", "*next", "wmKeyMapDiffItem", 8, true, 0)]
|
|
public wmKeyMapDiffItem ptr_next;
|
|
[DNAFieldAttribute(1, "wmKeyMapDiffItem", "*prev", "wmKeyMapDiffItem", 8, true, 8)]
|
|
public wmKeyMapDiffItem ptr_prev;
|
|
[DNAFieldAttribute(2, "wmKeyMapItem", "*remove_item", "wmKeyMapItem", 8, true, 16)]
|
|
public wmKeyMapItem ptr_remove_item;
|
|
[DNAFieldAttribute(3, "wmKeyMapItem", "*add_item", "wmKeyMapItem", 8, true, 24)]
|
|
public wmKeyMapItem ptr_add_item;
|
|
public wmKeyMapDiffItem() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.ptr_remove_item = default;
|
|
this.ptr_add_item = default;
|
|
}
|
|
public wmKeyMapDiffItem(wmKeyMapDiffItem ptr_next, wmKeyMapDiffItem ptr_prev, wmKeyMapItem ptr_remove_item, wmKeyMapItem ptr_add_item) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_remove_item = ptr_remove_item;
|
|
this.ptr_add_item = ptr_add_item;
|
|
}
|
|
}
|
|
}
|