summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Sheep.h
blob: ea43537cc55bc3893d68f553d0f89b4e720acdf0 (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
25
26
27
28

#pragma once

#include "PassiveMonster.h"





class cSheep :
	public cPassiveMonster
{
	typedef cPassiveMonster super;
	
public:
	cSheep(void);
	
	bool       m_IsSheared;
	NIBBLETYPE m_WoolColor;  // Uses E_META_WOOL_ constants for colors

	virtual bool IsA(const char * a_EntityType) override;

	virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
} ;