From 3edd271b81fec44575cb9c82bf4ba68e685e450e Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Wed, 28 Sep 2022 23:20:37 -0400 Subject: shrub biome --- src/chunk.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/chunk.hpp') diff --git a/src/chunk.hpp b/src/chunk.hpp index 8d1f03c..18230c8 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -19,11 +19,13 @@ #define AIR 0 #define DIRT 1 #define GRASS 2 -#define GREEN 3 +#define FULL_GRASS 3 #define STONE 4 #define SNOW 5 #define SAND 6 #define WATER 7 +#define SHRUB 8 +#define FULL_SHRUB 9 #define DIRT_TEXTURE "res/image/dirt.png" #define GRASS_TEXTURE "res/image/grass.png" @@ -32,6 +34,8 @@ #define SNOW_TEXTURE "res/image/snow.png" #define SAND_TEXTURE "res/image/sand.png" #define WATER_TEXTURE "res/image/water.png" +#define SHRUB_TEXTURE "res/image/shrub.png" +#define SHRUB_TOP_TEXTURE "res/image/shrub_top.png" static constexpr int WATER_LEVEL = 20; -- cgit v1.2.3-freya