2012-12-21 03:04:08 -08:00
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 13:53:08 -07:00
|
|
|
#include "PassiveMonster.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cSheep :
|
|
|
|
public cPassiveMonster
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
public:
|
2012-12-21 03:04:08 -08:00
|
|
|
cSheep(void);
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
bool m_IsSheared;
|
|
|
|
NIBBLETYPE m_WoolColor; // Uses E_META_WOOL_ constants for colors
|
|
|
|
|
2012-12-21 04:21:20 -08:00
|
|
|
CLASS_PROTODEF(cSheep);
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 06:06:06 -07:00
|
|
|
|