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

            
                           
 





                              
 

                                      
       

                       
                                 
 
                                                                                    

                                                                 

                                                                  
        

 
                           
                            

   
 
 
#pragma once

#include "PassiveMonster.h"





class cChicken :
	public cPassiveMonster
{
	typedef cPassiveMonster super;
	
public:
	cChicken(void);

	CLASS_PROTODEF(cChicken);

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;

	bool    IsBegging     (void) const { return m_IsBegging; }

private:


	int m_EggDropTimer;
	bool    m_IsBegging;
} ;