blob: 6ec7da34c696dfaf88f9c123d82a30cc0b20f985 [file] [log] [blame] [raw]
package net.glowstone.entity.monster;
import org.bukkit.Location;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Giant;
public class GlowGiant extends GlowMonster implements Giant {
public GlowGiant(Location loc) {
super(loc, EntityType.GIANT, 100);
setSize(3.6F, 10.8F);
}
}