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

27 lines
308 B
C
Raw Normal View History

#pragma once
#include "AggressiveMonster.h"
class cSilverfish :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
2016-02-05 21:45:45 +00:00
public:
cSilverfish(void) :
super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.4)
{
}
CLASS_PROTODEF(cSilverfish)
} ;