29 lines
978 B
C#
29 lines
978 B
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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class wmKeyMapDiffItem {
|
|
public wmKeyMapDiffItem ptr_next;
|
|
public wmKeyMapDiffItem ptr_prev;
|
|
public wmKeyMapItem ptr_remove_item;
|
|
public wmKeyMapItem ptr_add_item;
|
|
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;
|
|
}
|
|
}
|
|
}
|