summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Cow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Cow.h')
-rw-r--r--src/Mobs/Cow.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Mobs/Cow.h b/src/Mobs/Cow.h
index 8814b7e09..ab86dafb4 100644
--- a/src/Mobs/Cow.h
+++ b/src/Mobs/Cow.h
@@ -1,27 +1,23 @@
#pragma once
-#include "PassiveMonster.h"
+#include "Monster.h"
class cCow :
- public cPassiveMonster
+ public cMonster
{
- typedef cPassiveMonster super;
+ typedef cMonster super;
public:
cCow();
CLASS_PROTODEF(cCow)
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
- virtual void OnRightClicked(cPlayer & a_Player) override;
-
- virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_WHEAT); }
-
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) /*override*/;
} ;