033af999ba
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1090 0a769ca7-a7f5-676a-18bf-c427514a06d6
29 lines
352 B
C++
29 lines
352 B
C++
|
|
#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
|
|
|
|
CLASS_PROTODEF(cSheep);
|
|
|
|
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
|
|
} ;
|
|
|
|
|
|
|
|
|