]> git.lizzy.rs Git - minetest.git/blobdiff - src/dungeongen.h
FormSpec: Add StaticTextSpec and superimpose over item image buttons
[minetest.git] / src / dungeongen.h
index ff1d0bc33eb77a17f3b79c4c0c404e483e330283..d209dd4bf153e53846aad9dbd33d5f9a3f1299e4 100644 (file)
@@ -29,7 +29,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define VMANIP_FLAG_DUNGEON_UNTOUCHABLE (\
                VMANIP_FLAG_DUNGEON_INSIDE|VMANIP_FLAG_DUNGEON_PRESERVE)
 
-class ManualMapVoxelManipulator;
+class MMVManip;
 class INodeDefManager;
 
 v3s16 rand_ortho_dir(PseudoRandom &random, bool diagonal_dirs);
@@ -40,6 +40,7 @@ int dir_to_facedir(v3s16 d);
 
 struct DungeonParams {
        content_t c_water;
+       content_t c_river_water;
        content_t c_cobble;
        content_t c_moss;
        content_t c_stair;
@@ -57,7 +58,7 @@ struct DungeonParams {
 
 class DungeonGen {
 public:
-       ManualMapVoxelManipulator *vm;
+       MMVManip *vm;
        Mapgen *mg;
        u32 blockseed;
        PseudoRandom random;