diff options
author | kwolekr <kwolekr@minetest.net> | 2013-07-06 02:21:35 -0400 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2013-07-06 02:21:54 -0400 |
commit | 18d7bc7fa1f2621eb593969b7bcccfeb4918c05f (patch) | |
tree | eaff36cef37b8a219732d7a85357f0755b608181 /src/biome.h | |
parent | 3607fae75a00a1d0fee1b5caf58d04dcd9e2bc3a (diff) | |
download | dragonfireclient-18d7bc7fa1f2621eb593969b7bcccfeb4918c05f.tar.xz |
Mapgen V7: Huge rewrite, also tweaks to cavegen et al.
Diffstat (limited to 'src/biome.h')
-rw-r--r-- | src/biome.h | 16 |
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; |