Update the node struct

This commit is contained in:
Abdelrahman Said 2024-02-25 20:31:01 +00:00
parent b847f87ee5
commit bc6bb1afdc

View File

@ -26,11 +26,12 @@ union node_data {
};
struct node {
ui_node_elem node;
rect rec;
ui_elem_colours colours;
node_type type;
node_data data;
u64 inputs;
line *noodles;
};
#endif // !NODES_H