1
0
Fork 0
cuberite-2a/source/Mobs/Sheep.h

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