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

27 lines
302 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
class cSilverfish :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cSilverfish(void) :
2013-10-20 08:23:30 +00:00
super("Silverfish", mtSilverfish, "mob.silverfish.hit", "mob.silverfish.kill", 0.3, 0.7)
{
}
CLASS_PROTODEF(cSilverfish);
} ;