diff options
author | tonibm19 <tonibm19@gmail.com> | 2014-01-29 18:08:33 +0100 |
---|---|---|
committer | tonibm19 <tonibm19@gmail.com> | 2014-01-29 18:08:33 +0100 |
commit | ebe0f9372fa8787b3fe709937ebd3af30810f910 (patch) | |
tree | f87c7dc6ca63110233d79f0cad14a506dc67c350 /src/Mobs/Mooshroom.h | |
parent | Limited sign lines to 15 chars. (diff) | |
download | cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar.gz cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar.bz2 cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar.lz cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar.xz cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.tar.zst cuberite-ebe0f9372fa8787b3fe709937ebd3af30810f910.zip |
Diffstat (limited to 'src/Mobs/Mooshroom.h')
-rw-r--r-- | src/Mobs/Mooshroom.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Mobs/Mooshroom.h b/src/Mobs/Mooshroom.h index 73f6348b6..c288f68a9 100644 --- a/src/Mobs/Mooshroom.h +++ b/src/Mobs/Mooshroom.h @@ -18,6 +18,14 @@ public: CLASS_PROTODEF(cMooshroom); virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; + virtual void Tick(float a_Dt, cChunk & a_Chunk) override; + + bool IsBegging (void) const { return m_IsBegging; } + +private: + + bool m_IsBegging; + } ; |