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