summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Blaze.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Blaze.h')
-rw-r--r--src/Mobs/Blaze.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Mobs/Blaze.h b/src/Mobs/Blaze.h
index 9ebc1ffcf..35708a4d9 100644
--- a/src/Mobs/Blaze.h
+++ b/src/Mobs/Blaze.h
@@ -7,19 +7,16 @@
-class cBlaze:
- public cAggressiveMonster
+class cBlaze : public cAggressiveMonster
{
using Super = cAggressiveMonster;
-public:
-
+ public:
cBlaze();
CLASS_PROTODEF(cBlaze)
-private:
-
+ private:
virtual bool Attack(std::chrono::milliseconds a_Dt) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
virtual bool IsNetherNative(void) override { return true; }
@@ -31,4 +28,4 @@ private:
/** Number of ticks since the blaze started charging.
Used to create 3 successive projectiles. */
int m_ChargeTimer;
-} ;
+};