From af03f388cbcff795158ea8345b5c876470229e8b Mon Sep 17 00:00:00 2001 From: Schark Date: Mon, 18 Mar 2024 23:28:37 -0700 Subject: More granular square control --- height-map-display/src/map/square.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'height-map-display/src/map/square.h') diff --git a/height-map-display/src/map/square.h b/height-map-display/src/map/square.h index 132b43c..3852fc9 100644 --- a/height-map-display/src/map/square.h +++ b/height-map-display/src/map/square.h @@ -7,9 +7,12 @@ // Define the Terrain_Type enum typedef enum { - TERRAIN_FAIRWAY, + TERRAIN_INIT, TERRAIN_ROUGH, + TERRAIN_FAIRWAY, TERRAIN_GREEN, + TERRAIN_WATER, + TERRAIN_SAND, } Terrain_Type; // Define the Square struct @@ -26,6 +29,7 @@ typedef struct Square { Square* init_square(Node *tl, Node *tr, Node *bl, Node *br, Terrain_Type terrain, bool selected); void change_square_height(Square* square, float diff); void change_square_terrain(Square* square, Terrain_Type terrain); +float* get_terrain_color(Terrain_Type terrain); Square* find_selected_square(Square*** squares, int x, int y); #endif -- cgit v1.2.3-18-g5258