blob: 4bb311c35958de7be956e5465f9bbf80c4ee68bc [file] [log] [blame] [raw]
package net.glowstone.entity.monster;
import org.bukkit.Location;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Ghast;
public class GlowGhast extends GlowMonster implements Ghast {
public GlowGhast(Location loc) {
super(loc, EntityType.GHAST);
}
}