mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Added Player.get/setExperience, totalExperience and level
This commit is contained in:
parent
f0b709432d
commit
0abbb7ad7a
1 changed files with 41 additions and 0 deletions
|
@ -293,4 +293,45 @@ public interface Player extends HumanEntity, CommandSender, OfflinePlayer {
|
|||
*/
|
||||
public void resetPlayerTime();
|
||||
|
||||
/**
|
||||
* Gets the players current experience points towards the next level
|
||||
*
|
||||
* @return Current experience points
|
||||
*/
|
||||
public int getExperience();
|
||||
|
||||
/**
|
||||
* Sets the players current experience points
|
||||
*
|
||||
* @param exp New experience points
|
||||
*/
|
||||
public void setExperience(int exp);
|
||||
|
||||
/**
|
||||
* Gets the players current experience level
|
||||
*
|
||||
* @return Current experience level
|
||||
*/
|
||||
public int getLevel();
|
||||
|
||||
/**
|
||||
* Sets the players current experience level
|
||||
*
|
||||
* @param exp New experience level
|
||||
*/
|
||||
public void setLevel(int level);
|
||||
|
||||
/**
|
||||
* Gets the players total experience points
|
||||
*
|
||||
* @return Current total experience points
|
||||
*/
|
||||
public int getTotalExperience();
|
||||
|
||||
/**
|
||||
* Sets the players current experience level
|
||||
*
|
||||
* @param exp New experience level
|
||||
*/
|
||||
public void setTotalExperience(int exp);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue