diff options
Diffstat (limited to '')
-rw-r--r-- | src/Generating/TwoHeights.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Generating/TwoHeights.cpp b/src/Generating/TwoHeights.cpp index dd05fe835..15c48eb26 100644 --- a/src/Generating/TwoHeights.cpp +++ b/src/Generating/TwoHeights.cpp @@ -17,8 +17,10 @@ class cTwoHeights: public cTerrainShapeGen { - typedef cTerrainShapeGen super; + using Super = cTerrainShapeGen; + public: + cTwoHeights(int a_Seed, cBiomeGenPtr a_BiomeGen): m_Seed(a_Seed), m_Choice(a_Seed), |