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

org.bukkit.scoreboard.Criterias Maven / Gradle / Ivy

The newest version!
package org.bukkit.scoreboard;

/**
 * Criteria names which trigger an objective to be modified by actions in-game
 */
public class Criterias {
  public static final String HEALTH;
  public static final String PLAYER_KILLS;
  public static final String TOTAL_KILLS;
  public static final String DEATHS;

  static {
    HEALTH = "health";
    PLAYER_KILLS = "playerKillCount";
    TOTAL_KILLS = "totalKillCount";
    DEATHS = "deathCount";
  }

  private Criterias() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy