summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Chicken.h
diff options
context:
space:
mode:
authorSamuel Barney <samjbarney@gmail.com>2014-08-21 16:26:42 +0200
committerSamuel Barney <samjbarney@gmail.com>2014-08-21 16:26:42 +0200
commit778b933e0078b740093ab9d83eddef702011791a (patch)
treeac1b610b0704f5c6bbd84c83d68a73d8cb01d2b7 /src/Mobs/Chicken.h
parentRemoved references to the new mob code in preparation to renaming it. (diff)
downloadcuberite-778b933e0078b740093ab9d83eddef702011791a.tar
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.gz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.bz2
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.lz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.xz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.zst
cuberite-778b933e0078b740093ab9d83eddef702011791a.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Chicken.h (renamed from src/Mobs/NewChicken.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Mobs/NewChicken.h b/src/Mobs/Chicken.h
index 4323585e6..7e52d6d83 100644
--- a/src/Mobs/NewChicken.h
+++ b/src/Mobs/Chicken.h
@@ -1,20 +1,20 @@
#pragma once
-#include "NewMonster.h"
+#include "Monster.h"
-class cNewChicken :
- public cNewMonster
+class cChicken :
+ public cMonster
{
- typedef cNewMonster super;
+ typedef cMonster super;
public:
- cNewChicken(void);
+ cChicken(void);
- CLASS_PROTODEF(cNewChicken)
+ CLASS_PROTODEF(cChicken)
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;