Files
BlenderSharp/BlendFile/DNA/wmKeyConfigPref.cs
2025-03-11 19:12:04 +01:00

40 lines
1.4 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(1063, "wmKeyConfigPref", 88)]
public class wmKeyConfigPref {
[DNAFieldAttribute(8, "wmKeyConfigPref", 0, "*next", "wmKeyConfigPref", true, 0)]
public wmKeyConfigPref next;
[DNAFieldAttribute(8, "wmKeyConfigPref", 1, "*prev", "wmKeyConfigPref", true, 8)]
public wmKeyConfigPref prev;
[DNAArrayAttribute(64, "char", 2, "idname[64]", "System.Char[]", 64, 16)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(8, "IDProperty", 3, "*prop", "IDProperty", true, 80)]
public IDProperty prop;
public wmKeyConfigPref() {
this.next = default;
this.prev = default;
this.idname = default;
this.prop = default;
}
public wmKeyConfigPref(wmKeyConfigPref next, wmKeyConfigPref prev, char[] idname, IDProperty prop) {
this.next = next;
this.prev = prev;
this.idname = idname;
this.prop = prop;
}
}
}