1
0
cuberite-2a/source/Mobs/Bat.h
2012-12-22 09:39:13 +00:00

27 lines
259 B
C++

#pragma once
#include "PassiveMonster.h"
class cBat :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cBat(void) :
super("Bat", 65, "mob.bat.hurt", "mob.bat.death")
{
}
CLASS_PROTODEF(cBat);
} ;