From 9ee47e59995f858ec531b3ee467f131594e4ba1f Mon Sep 17 00:00:00 2001 From: Mattes D Date: Mon, 13 Apr 2020 18:38:06 +0200 Subject: Using Super. --- src/Generating/FinishGen.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/Generating/FinishGen.h') diff --git a/src/Generating/FinishGen.h b/src/Generating/FinishGen.h index b6edce84f..4dfd35a7c 100644 --- a/src/Generating/FinishGen.h +++ b/src/Generating/FinishGen.h @@ -487,9 +487,10 @@ Note that this class uses the "Nest" terminology for individual packs of ore, it class cFinishGenOres: public cFinishGen { - typedef cFinishGen Super; + using Super = cFinishGen; public: + struct OreInfo { BLOCKTYPE m_BlockType; // The type of the nest. @@ -574,12 +575,13 @@ protected: -class cFinishGenOreNests : +class cFinishGenOreNests: public cFinishGenOres { - typedef cFinishGenOres Super; + using Super = cFinishGenOres; public: + cFinishGenOreNests(int a_Seed, const OreInfos & a_OreInfos): Super(a_Seed, a_OreInfos) {} @@ -602,9 +604,10 @@ protected: class cFinishGenOrePockets: public cFinishGenOres { - typedef cFinishGenOres Super; + using Super = cFinishGenOres; public: + cFinishGenOrePockets(int a_Seed, const OreInfos & a_OreInfos): Super(a_Seed, a_OreInfos) {} -- cgit v1.2.3