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

26 lines
221 B
C++

#pragma once
#include "PassiveMonster.h"
class cBat :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cBat(void);
CLASS_PROTODEF(cBat);
bool IsHanging(void) const {return false; }
} ;