summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Squid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Squid.h')
-rw-r--r--src/Mobs/Squid.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Mobs/Squid.h b/src/Mobs/Squid.h
index b57340427..30f3afe23 100644
--- a/src/Mobs/Squid.h
+++ b/src/Mobs/Squid.h
@@ -1,29 +1,23 @@
#pragma once
-#include "PassiveMonster.h"
+#include "Monster.h"
class cSquid :
- public cPassiveMonster
+ public cMonster
{
- typedef cPassiveMonster super;
+ typedef cMonster super;
public:
cSquid();
- virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
-
CLASS_PROTODEF(cSquid)
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
-
- // Squids do not drown (or float)
- virtual void HandleAir(void) override {}
- virtual void SetSwimState(cChunk & a_Chunk) override {}
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;