diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-01-25 21:19:52 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-01-25 21:19:52 +0100 |
commit | 7b8dc01db32be3d780f38ffbe788500f82983d62 (patch) | |
tree | bc6dbbfbac2616d80dc878ff7f0c2880f47115af /src/Mobs/Sheep.h | |
parent | Fixed *nix compilation for previous commit. (diff) | |
download | cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar.gz cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar.bz2 cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar.lz cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar.xz cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.tar.zst cuberite-7b8dc01db32be3d780f38ffbe788500f82983d62.zip |
Diffstat (limited to 'src/Mobs/Sheep.h')
-rw-r--r-- | src/Mobs/Sheep.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Mobs/Sheep.h b/src/Mobs/Sheep.h index 8293a2c05..4eee3db1c 100644 --- a/src/Mobs/Sheep.h +++ b/src/Mobs/Sheep.h @@ -19,6 +19,8 @@ public: virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; virtual void OnRightClicked(cPlayer & a_Player) override; + virtual void Tick(float a_Dt, cChunk & a_Chunk) override; + bool IsSheared(void) const { return m_IsSheared; } int GetFurColor(void) const { return m_WoolColor; } @@ -26,6 +28,7 @@ private: bool m_IsSheared; int m_WoolColor; + int m_TimeToStopEating; } ; |