diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-03-02 02:00:11 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-03-02 02:00:11 +0200 |
commit | 2e7b15fed37e6e81844b3cac0e37671ff3a8b4da (patch) | |
tree | c71ca1e535aff6770077c82193d2b2233997c61b /src/map.h | |
parent | 9a22d02903549c09f059b12f0ec06ea12a19abbb (diff) | |
download | minetest-2e7b15fed37e6e81844b3cac0e37671ff3a8b4da.tar.gz minetest-2e7b15fed37e6e81844b3cac0e37671ff3a8b4da.tar.bz2 minetest-2e7b15fed37e6e81844b3cac0e37671ff3a8b4da.zip |
mapgen work-in-progress
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -45,7 +45,9 @@ with this program; if not, write to the Free Software Foundation, Inc., */ double base_rock_level_2d(u64 seed, v2f p); -bool get_have_sand(u64 seed, v2f p); +bool get_have_sand_coast(u64 seed, v2f p); +bool get_have_sand_ground(u64 seed, v2f p); +double get_turbulence_factor_2d(u64 seed, v2f p); /* */ |