Added Type stubbing
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user