summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Giant.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Giant.h')
-rw-r--r--src/Mobs/Giant.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/Giant.h b/src/Mobs/Giant.h
index 7c04c9b4f..bf291d647 100644
--- a/src/Mobs/Giant.h
+++ b/src/Mobs/Giant.h
@@ -1,23 +1,23 @@
#pragma once
-#include "AggressiveMonster.h"
+#include "Monster.h"
class cGiant :
- public cAggressiveMonster
+ public cMonster
{
- typedef cAggressiveMonster super;
+ typedef cMonster super;
public:
cGiant(void);
CLASS_PROTODEF(cGiant)
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;