1
0
cuberite-2a/src/Mobs/Bat.h
2016-02-05 23:50:18 +02:00

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