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

27 lines
337 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) :
2020-03-22 15:50:34 +00:00
super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", "entity.silverfish.ambient", 0.3, 0.4)
{
}
CLASS_PROTODEF(cSilverfish)
} ;