diff options
author | Mattes D <github@xoft.cz> | 2014-04-24 22:12:28 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-24 22:12:28 +0200 |
commit | 85e0b0eae9a6b41fd349ba16534bcc985c9abdfa (patch) | |
tree | 287edd174804ca96887f7183ca14a31af5eeb92b /src/Mobs/MagmaCube.h | |
parent | Changed cByteBuffer constructor to take a size_t instead of int. (diff) | |
parent | Fixed class capitalization for the cave spider. (diff) | |
download | cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.gz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.bz2 cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.lz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.xz cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.tar.zst cuberite-85e0b0eae9a6b41fd349ba16534bcc985c9abdfa.zip |
Diffstat (limited to 'src/Mobs/MagmaCube.h')
-rw-r--r-- | src/Mobs/MagmaCube.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/Mobs/MagmaCube.h b/src/Mobs/MagmaCube.h new file mode 100644 index 000000000..43065cae5 --- /dev/null +++ b/src/Mobs/MagmaCube.h @@ -0,0 +1,31 @@ +#pragma once + +#include "AggressiveMonster.h" + + + + + +class cMagmaCube : + public cAggressiveMonster +{ + typedef cAggressiveMonster super; + +public: + /// Creates a MagmaCube of the specified size; size is 1 .. 3, with 1 being the smallest + cMagmaCube(int a_Size); + + CLASS_PROTODEF(cMagmaCube); + + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; + int GetSize(void) const { return m_Size; } + +protected: + + /// Size of the MagmaCube, 1 .. 3, with 1 being the smallest + int m_Size; +} ; + + + + |