Files
cuberite-2a/source/Mobs/Bat.h
T

26 lines
221 B
C++
Raw Normal View History

2013-07-29 12:13:03 +01:00
#pragma once
#include "PassiveMonster.h"
class cBat :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cBat(void);
2013-07-29 12:13:03 +01:00
CLASS_PROTODEF(cBat);
2013-10-09 21:02:59 +01:00
bool IsHanging(void) const {return false; }
2013-07-29 12:13:03 +01:00
} ;