aboutsummaryrefslogtreecommitdiff
path: root/src/biome.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2013-07-06 02:21:35 -0400
committerkwolekr <kwolekr@minetest.net>2013-07-06 02:21:54 -0400
commit18d7bc7fa1f2621eb593969b7bcccfeb4918c05f (patch)
treeeaff36cef37b8a219732d7a85357f0755b608181 /src/biome.h
parent3607fae75a00a1d0fee1b5caf58d04dcd9e2bc3a (diff)
downloaddragonfireclient-18d7bc7fa1f2621eb593969b7bcccfeb4918c05f.tar.xz
Mapgen V7: Huge rewrite, also tweaks to cavegen et al.
Diffstat (limited to 'src/biome.h')
-rw-r--r--src/biome.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/biome.h b/src/biome.h
index 535dc4989..cf3bd1b9f 100644
--- a/src/biome.h
+++ b/src/biome.h
@@ -45,14 +45,20 @@ public:
std::string name;
u32 flags;
- std::string top_nodename;
- std::string filler_nodename;
+ std::string nname_top;
+ std::string nname_filler;
+ std::string nname_water;
+ std::string nname_dust;
+ std::string nname_dust_water;
content_t c_top;
- s16 top_depth;
-
content_t c_filler;
- s16 filler_height;
+ content_t c_water;
+ content_t c_dust;
+ content_t c_dust_water;
+
+ s16 depth_top;
+ s16 depth_filler;
s16 height_min;
s16 height_max;