From e7a4152899e63182a4cc0dffff6cd331d6dac305 Mon Sep 17 00:00:00 2001 From: Schark Date: Sun, 17 Mar 2024 01:32:33 -0700 Subject: Map overhaul, need to fix renderer --- height-map-display/src/map/node.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 height-map-display/src/map/node.h (limited to 'height-map-display/src/map/node.h') diff --git a/height-map-display/src/map/node.h b/height-map-display/src/map/node.h new file mode 100644 index 0000000..d12accf --- /dev/null +++ b/height-map-display/src/map/node.h @@ -0,0 +1,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 + -- cgit v1.2.3-18-g5258