org.bukkit.scoreboard.Criterias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chest-server Show documentation
Show all versions of chest-server Show documentation
A spigot fork to kotlin structure and news.
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