summaryrefslogblamecommitdiffstats
path: root/source/Mobs/Magmacube.h
blob: da62b96159ea283a4fbe0fce5603ee8e346fef17 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 



                               





                                  
  

                                          
        

                                                                                                 
 
                                    
 





                                                                                     



    
 

#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;
} ;