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 16:45:45 -05:00
public:
cSilverfish(void) :
2017-02-15 00:05:24 -05:00
super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.7)
{
}
CLASS_PROTODEF(cSilverfish)
} ;