2012-12-21 06:04:08 -05:00
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "AggressiveMonster.h"
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMagmacube :
|
|
|
|
public cAggressiveMonster
|
2012-10-19 14:30:46 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cAggressiveMonster super;
|
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
public:
|
2013-07-01 06:39:56 -04:00
|
|
|
/// Creates a magmacube of the specified size; size is 1 .. 3, with 1 being the smallest
|
|
|
|
cMagmacube(int a_Size);
|
2012-10-19 14:30:46 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
CLASS_PROTODEF(cMagmacube);
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
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;
|
2012-12-21 06:04:08 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
|