1
0
Fork 0
cuberite-2a/src/Mobs/Bat.h

26 lines
218 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; }
} ;