Add API to get a players experience to level (getExpToLevel). Implements BUKKIT-1906

This is the total experience one needs to gain a level.
This commit is contained in:
feildmaster
2012-07-10 13:38:07 -05:00
parent c3830e0d22
commit ec51c24641
2 changed files with 11 additions and 0 deletions

View File

@@ -764,4 +764,8 @@ public class TestPlayer implements Player {
public boolean isValid() {
throw new UnsupportedOperationException("Not supported yet.");
}
public int getExpToLevel() {
throw new UnsupportedOperationException("Not supported yet.");
}
}