1
0
cuberite-2a/src/Mobs/Mooshroom.h
2013-11-24 14:19:41 +00:00

26 lines
271 B
C++

#pragma once
#include "PassiveMonster.h"
class cMooshroom :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cMooshroom(void);
CLASS_PROTODEF(cMooshroom);
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
} ;