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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class XrActionMap {
[DNAFieldAttribute(0, "XrActionMap", "*next", 104)]
public XrActionMap ptr_next;
[DNAFieldAttribute(1, "XrActionMap", "*prev", 104)]
public XrActionMap ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "ListBase", "items", 16)]
public ListBase items;
[DNAFieldAttribute(4, "short", "selitem", 2)]
public short selitem;
[DNAFieldAttribute(5, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public XrActionMap(XrActionMap ptr_next, XrActionMap ptr_prev, char[] name, ListBase items, short selitem, char[] _pad) {
this.ptr_next = ptr_next;