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

27 lines
214 B
C
Raw Normal View History

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