Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -15,13 +15,13 @@ namespace BlendFile.DNA {
public class ActionSlot {
public char[] name = new System.Char[66];
public uchar[] _pad0 = new uchar[2];
public byte[] _pad0 = new System.Byte[2];
public int idtype;
public int handle;
public int8_t slot_flags;
public uchar[] _pad1 = new uchar[3];
public sbyte slot_flags;
public byte[] _pad1 = new System.Byte[3];
public ActionSlotRuntimeHandle ptr_runtime;
public ActionSlot(char[] name, uchar[] _pad0, int idtype, int handle, int8_t slot_flags, uchar[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
public ActionSlot(char[] name, byte[] _pad0, int idtype, int handle, sbyte slot_flags, byte[] _pad1, ActionSlotRuntimeHandle ptr_runtime) {
this.name = name;
this._pad0 = _pad0;
this.idtype = idtype;