Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class wmKeyConfig {
[DNAFieldAttribute(0, "wmKeyConfig", "*next", 168)]
public wmKeyConfig ptr_next;
[DNAFieldAttribute(1, "wmKeyConfig", "*prev", 168)]
public wmKeyConfig ptr_prev;
[DNAFieldAttribute(2, "char", "idname[64]", 1)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(3, "char", "basename[64]", 1)]
public char[] basename = new System.Char[64];
[DNAFieldAttribute(4, "ListBase", "keymaps", 16)]
public ListBase keymaps;
[DNAFieldAttribute(5, "int", "actkeymap", 4)]
public int actkeymap;
[DNAFieldAttribute(6, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(7, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
public wmKeyConfig(wmKeyConfig ptr_next, wmKeyConfig ptr_prev, char[] idname, char[] basename, ListBase keymaps, int actkeymap, short flag, char[] _pad0) {
this.ptr_next = ptr_next;