summaryrefslogtreecommitdiff
path: root/height-map-display/src/map/node.h
blob: d12accf99e0fa28fc24f45e2752d34097cce8549 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef NODE_H
#define NODE_H

typedef struct Node {
    int x;
    int y;
    float elevation;
} Node;

void change_node_height(Node* node, float diff);

#endif