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

27 lines
259 B
C++
Raw Normal View History

2012-11-01 10:56:47 +00:00
#pragma once
#include "PassiveMonster.h"
class cBat :
public cPassiveMonster
2012-11-01 10:56:47 +00:00
{
typedef cPassiveMonster super;
2012-11-01 10:56:47 +00:00
public:
cBat(void) :
super("Bat", 65, "mob.bat.hurt", "mob.bat.death")
{
}
CLASS_PROTODEF(cBat);
} ;
2012-11-01 10:56:47 +00:00