diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-28 23:20:37 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-28 23:20:37 -0400 |
commit | 3edd271b81fec44575cb9c82bf4ba68e685e450e (patch) | |
tree | e8d2a036cd873659a7f12d5f0fda41b17931d0b8 /src/chunk.hpp | |
parent | re enable music (diff) | |
download | minecraftvulkan-3edd271b81fec44575cb9c82bf4ba68e685e450e.tar.gz minecraftvulkan-3edd271b81fec44575cb9c82bf4ba68e685e450e.tar.bz2 minecraftvulkan-3edd271b81fec44575cb9c82bf4ba68e685e450e.zip |
shrub biome
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r-- | src/chunk.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
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; |