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