summaryrefslogblamecommitdiffstats
path: root/src/Mobs/ZombiePigman.h
blob: a4bad7efbc71ecd0f664f8c51f52ba4c29625ee8 (plain) (tree)
1
2
3
4
5
6
7
8
9

            
                                     
 



 
                     
                                        
 

                                                
       
                            
 
                                      
 
                                                                                    
                                                               

                                                             



   
 
#pragma once

#include "PassiveAggressiveMonster.h"





class cZombiePigman :
	public cPassiveAggressiveMonster
{
	typedef cPassiveAggressiveMonster super;
	
public:
	cZombiePigman(void);

	CLASS_PROTODEF(cZombiePigman);

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
	virtual void KilledBy(TakeDamageInfo & a_TDI) override;
	
	virtual bool IsUndead(void) override { return true; }
} ;