summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Chicken.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Chicken.h')
-rw-r--r--source/Mobs/Chicken.h23
1 files changed, 17 insertions, 6 deletions
diff --git a/source/Mobs/Chicken.h b/source/Mobs/Chicken.h
index acfb202e3..49c88a059 100644
--- a/source/Mobs/Chicken.h
+++ b/source/Mobs/Chicken.h
@@ -1,14 +1,25 @@
+
#pragma once
#include "PassiveMonster.h"
-class cChicken : public cPassiveMonster
+
+
+
+
+class cChicken :
+ public cPassiveMonster
{
+ typedef cPassiveMonster super;
+
public:
- cChicken();
- ~cChicken();
+ cChicken(void);
+
+ virtual bool IsA(const char * a_EntityType) override;
+
+ virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
+} ;
+
+
- virtual bool IsA( const char* a_EntityType );
- virtual void KilledBy( cEntity* a_Killer );
-};