]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/biome.h
Limit speed in collisionMoveResult for avoiding hangs
[dragonfireclient.git] / src / biome.h
index 3bf7a5d34351c58c041848a324c193ccd658b1f0..c30af46ad821302ce742e141cda9d6c952173b7b 100644 (file)
@@ -1,6 +1,6 @@
 /*
-Minetest-c55
-Copyright (C) 2010-2011 kwolekr, Ryan Kwolek <kwolekr2@cs.scranton.edu>
+Minetest
+Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr2@cs.scranton.edu>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -53,26 +53,26 @@ class Biome {
        std::string name;
        NoiseParams *np;
 
-       virtual void genColumn(MapgenV7 *mg, int x, int z, int y1, int y2);
+       virtual void genColumn(Mapgen *mg, int x, int z, int y1, int y2);
        virtual int getSurfaceHeight(float noise_terrain);
 };
 
 class BiomeLiquid : public Biome {
-       virtual void genColumn(MapgenV7 *mg, int x, int z, int y1, int y2);
+       virtual void genColumn(Mapgen *mg, int x, int z, int y1, int y2);
 };
 
 class BiomeHell : public Biome {
-       virtual void genColumn(MapgenV7 *mg, int x, int z, int y1, int y2);
+       virtual void genColumn(Mapgen *mg, int x, int z, int y1, int y2);
        virtual int getSurfaceHeight(float noise_terrain);
 };
 
 class BiomeAether : public Biome {
-       virtual void genColumn(MapgenV7 *mg, int x, int z, int y1, int y2);
+       virtual void genColumn(Mapgen *mg, int x, int z, int y1, int y2);
        virtual int getSurfaceHeight(float noise_terrain);
 };
 
 class BiomeSuperflat : public Biome {
-       virtual void genColumn(MapgenV7 *mg, int x, int z, int y1, int y2);
+       virtual void genColumn(Mapgen *mg, int x, int z, int y1, int y2);
        virtual int getSurfaceHeight(float noise_terrain);
 };