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

27 lines
214 B
C
Raw Normal View History

#pragma once
#include "PassiveMonster.h"
2020-04-13 12:38:06 -04:00
class cBat:
public cPassiveMonster
{
2020-04-13 12:38:06 -04:00
using Super = cPassiveMonster;
2016-02-05 16:45:45 -05:00
public:
2020-04-13 12:38:06 -04:00
cBat();
CLASS_PROTODEF(cBat)
2016-02-05 16:45:45 -05:00
bool IsHanging(void) const {return false; }
} ;