blob: c412570f598dd7bc389d2aeea51ec7601608411a [file] [log] [blame] [raw]
package net.glowstone.entity;
import org.bukkit.Location;
import org.bukkit.entity.Ambient;
public abstract class GlowAmbient extends GlowLivingEntity implements Ambient {
public GlowAmbient(Location location, double maxHealth) {
super(location, maxHealth);
}
}