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

@@ -18,12 +18,12 @@ namespace BlendFile.DNA {
public BoneCollection ptr_prev;
public char[] name = new System.Char[64];
public ListBase bones;
public uchar flags;
public uchar[] _pad0 = new uchar[7];
public byte flags;
public byte[] _pad0 = new System.Byte[7];
public int child_index;
public int child_count;
public IDProperty ptr_prop;
public BoneCollection(BoneCollection ptr_next, BoneCollection ptr_prev, char[] name, ListBase bones, uchar flags, uchar[] _pad0, int child_index, int child_count, IDProperty ptr_prop) {
public BoneCollection(BoneCollection ptr_next, BoneCollection ptr_prev, char[] name, ListBase bones, byte flags, byte[] _pad0, int child_index, int child_count, IDProperty ptr_prop) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.name = name;