summaryrefslogtreecommitdiffstats
path: root/src/Mobs/PassiveAggressiveMonster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/PassiveAggressiveMonster.h')
-rw-r--r--src/Mobs/PassiveAggressiveMonster.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/Mobs/PassiveAggressiveMonster.h b/src/Mobs/PassiveAggressiveMonster.h
index a29da3463..f42c7a89b 100644
--- a/src/Mobs/PassiveAggressiveMonster.h
+++ b/src/Mobs/PassiveAggressiveMonster.h
@@ -7,13 +7,22 @@
-class cPassiveAggressiveMonster :
+class cPassiveAggressiveMonster:
public cAggressiveMonster
{
- typedef cAggressiveMonster super;
+ using Super = cAggressiveMonster;
public:
- cPassiveAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, const AString & a_SoundAmbient, double a_Width, double a_Height);
+
+ cPassiveAggressiveMonster(
+ const AString & a_ConfigName,
+ eMonsterType a_MobType,
+ const AString & a_SoundHurt,
+ const AString & a_SoundDeath,
+ const AString & a_SoundAmbient,
+ double a_Width,
+ double a_Height
+ );
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void EventSeePlayer(cPlayer *, cChunk & a_Chunk) override;