All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.entity.Zombie Maven / Gradle / Ivy

package org.bukkit.entity;

/**
 * Represents a Zombie.
 */
public interface Zombie extends Monster {

  /**
   * Gets whether the zombie is a baby
   *
   * @return Whether the zombie is a baby
   */
  boolean isBaby();

  /**
   * Sets whether the zombie is a baby
   *
   * @param flag Whether the zombie is a baby
   */
  void setBaby(boolean flag);

  /**
   * Gets whether the zombie is a villager
   *
   * @return Whether the zombie is a villager
   */
  boolean isVillager();

  /**
   * Sets whether the zombie is a villager
   *
   * @param flag Whether the zombie is a villager
   */
  void setVillager(boolean flag);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy