summaryrefslogtreecommitdiffstats
path: root/src/Mobs/SnowGolem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/SnowGolem.h')
-rw-r--r--src/Mobs/SnowGolem.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Mobs/SnowGolem.h b/src/Mobs/SnowGolem.h
index aba89e52d..d61c0ade5 100644
--- a/src/Mobs/SnowGolem.h
+++ b/src/Mobs/SnowGolem.h
@@ -1,24 +1,23 @@
#pragma once
-#include "AggressiveMonster.h"
+#include "Monster.h"
class cSnowGolem :
- public cAggressiveMonster
+ public cMonster
{
- typedef cAggressiveMonster super;
+ typedef cMonster super;
public:
cSnowGolem(void);
CLASS_PROTODEF(cSnowGolem)
- virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;