1
0
cuberite-2a/source/Mobs/Sheep.h
2012-09-23 20:53:08 +00:00

18 lines
304 B
C++

#pragma once
#include "PassiveMonster.h"
class cSheep : public cPassiveMonster
{
public:
cSheep();
~cSheep();
bool m_IsSheared;
NIBBLETYPE m_WoolColor; // Uses E_META_WOOL_ constants for colors
virtual bool IsA(const char * a_EntityType);
virtual void KilledBy(cEntity * a_Killer);
};