summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Rabbit.h
blob: 5ea03d09b8c6f3a8b5483451c018799cf9209f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

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

} ;