diff options
Diffstat (limited to 'src/Generating/TwoHeights.cpp')
-rw-r--r-- | src/Generating/TwoHeights.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Generating/TwoHeights.cpp b/src/Generating/TwoHeights.cpp index 377127c00..91c67608c 100644 --- a/src/Generating/TwoHeights.cpp +++ b/src/Generating/TwoHeights.cpp @@ -21,7 +21,7 @@ class cTwoHeights: public: - cTwoHeights(int a_Seed, const cBiomeGenPtr & a_BiomeGen): + cTwoHeights(int a_Seed, cBiomeGen & a_BiomeGen): m_Seed(a_Seed), m_Choice(a_Seed), m_HeightA(a_Seed + 1, a_BiomeGen), @@ -113,11 +113,7 @@ protected: -cTerrainShapeGenPtr CreateShapeGenTwoHeights(int a_Seed, const cBiomeGenPtr & a_BiomeGen) +std::unique_ptr<cTerrainShapeGen> CreateShapeGenTwoHeights(int a_Seed, cBiomeGen & a_BiomeGen) { - return std::make_shared<cTwoHeights>(a_Seed, a_BiomeGen); + return std::make_unique<cTwoHeights>(a_Seed, a_BiomeGen); } - - - - |