blob: a33ee68c890addb670bd5121a585a3a72e57882e [file] [log] [blame] [raw]
package net.glowstone.entity.monster;
import org.bukkit.Location;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Silverfish;
/**
*
* @author TheMCPEGamer
*/
public class GlowSilverfish extends GlowMonster implements Silverfish
{
public GlowSilverfish(Location loc)
{
super(loc, EntityType.SILVERFISH);
}
}