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,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;