Added Type stubbing
This commit is contained in:
@@ -18,10 +18,10 @@ namespace BlendFile.DNA {
|
||||
public GreasePencilLayerTreeNode ptr_prev;
|
||||
public GreasePencilLayerTreeGroup ptr_parent;
|
||||
public char ptr_name;
|
||||
public int8_t type;
|
||||
public uchar[] color = new uchar[3];
|
||||
public sbyte type;
|
||||
public byte[] color = new System.Byte[3];
|
||||
public int flag;
|
||||
public GreasePencilLayerTreeNode(GreasePencilLayerTreeNode ptr_next, GreasePencilLayerTreeNode ptr_prev, GreasePencilLayerTreeGroup ptr_parent, char ptr_name, int8_t type, uchar[] color, int flag) {
|
||||
public GreasePencilLayerTreeNode(GreasePencilLayerTreeNode ptr_next, GreasePencilLayerTreeNode ptr_prev, GreasePencilLayerTreeGroup ptr_parent, char ptr_name, sbyte type, byte[] color, int flag) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_parent = ptr_parent;
|
||||
|
||||
Reference in New Issue
Block a user