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,14 +11,22 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ActionSlot {
[DNAFieldAttribute(0, "char", "name[66]", 1)]
public char[] name = new System.Char[66];
[DNAFieldAttribute(1, "uchar", "_pad0[2]", 1)]
public byte[] _pad0 = new System.Byte[2];
[DNAFieldAttribute(2, "int", "idtype", 4)]
public int idtype;
[DNAFieldAttribute(3, "int", "handle", 4)]
public int handle;
[DNAFieldAttribute(4, "int8_t", "slot_flags", 1)]
public sbyte slot_flags;
[DNAFieldAttribute(5, "uchar", "_pad1[3]", 1)]
public byte[] _pad1 = new System.Byte[3];
[DNAFieldAttribute(6, "ActionSlotRuntimeHandle", "*runtime", 0)]
public ActionSlotRuntimeHandle ptr_runtime;
public ActionSlot(char[] name, byte[] _pad0, int idtype, int handle, sbyte slot_flags, byte[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
this.name = name;