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

@@ -16,13 +16,13 @@ namespace BlendFile.DNA {
public class ActionLayer {
public char[] name = new System.Char[64];
public float influence;
public uchar layer_flags;
public int8_t layer_mix_mode;
public uchar[] _pad0 = new uchar[2];
public byte layer_flags;
public sbyte layer_mix_mode;
public byte[] _pad0 = new System.Byte[2];
public ActionStrip ptr_ptr_strip_array;
public int strip_array_num;
public uchar[] _pad1 = new uchar[4];
public ActionLayer(char[] name, float influence, uchar layer_flags, int8_t layer_mix_mode, uchar[] _pad0, ActionStrip ptr_ptr_strip_array, int strip_array_num, uchar[] _pad1) {
public byte[] _pad1 = new System.Byte[4];
public ActionLayer(char[] name, float influence, byte layer_flags, sbyte layer_mix_mode, byte[] _pad0, ActionStrip ptr_ptr_strip_array, int strip_array_num, byte[] _pad1) {
this.name = name;
this.influence = influence;
this.layer_flags = layer_flags;