summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Rabbit.h
blob: 5ea03d09b8c6f3a8b5483451c018799cf9209f36 (plain) (tree)























                                                                                                 

#pragma once

#include "PassiveMonster.h"





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

	CLASS_PROTODEF(cRabbit)

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;

	virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_CARROT); }

} ;