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

            
                           
 





                              
 

                                      

               
 
                             
 
                                                                                    
                                                                 







                                                                  



   
 

#pragma once

#include "PassiveMonster.h"





class cCow :
	public cPassiveMonster
{
	typedef cPassiveMonster super;
	
public:
	cCow();

	CLASS_PROTODEF(cCow);

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

	bool    IsBegging     (void) const { return m_IsBegging; }

private:

	bool m_IsBegging;

} ;