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