#ifndef NODE_H #define NODE_H #include typedef struct Node { int x; int y; float elevation; bool selected; } Node; // TODO: get (x, y) as int arr void change_node_height(Node* node, float diff); int* get_coords(Node* node); #endif