]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/mg_biome.h
Fix gettext on MSVC
[dragonfireclient.git] / src / mg_biome.h
index f1539dacb9e0b44c93353437701aba39d9f6afd1..3577960a9890494b2aebb164f0094ee076f18b6c 100644 (file)
@@ -33,24 +33,31 @@ enum BiomeType
        BIOME_TYPE_FLAT
 };
 
-class Biome : public GenElement {
+class Biome : public GenElement, public NodeResolver {
 public:
        u32 flags;
 
        content_t c_top;
        content_t c_filler;
+       content_t c_shore_top;
+       content_t c_shore_filler;
+       content_t c_underwater;
        content_t c_stone;
+       content_t c_water_top;
        content_t c_water;
        content_t c_dust;
-       content_t c_dust_water;
 
        s16 depth_top;
        s16 depth_filler;
+       s16 height_shore;
+       s16 depth_water_top;
 
-       s16 height_min;
-       s16 height_max;
+       s16 y_min;
+       s16 y_max;
        float heat_point;
        float humidity_point;
+
+       virtual void resolveNodeNames(NodeResolveInfo *nri);
 };
 
 class BiomeManager : public GenElementManager {