1
0
Fork 0
cuberite-2a/source/Mobs/Magmacube.h

32 lines
496 B
C++

#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;
protected:
/// Size of the magmacube, 1 .. 3, with 1 being the smallest
int m_Size;
} ;