Implemented Exp Orb methods

This commit is contained in:
Dinnerbone
2011-09-15 05:48:31 +01:00
parent fce1a61254
commit 548ecfdec8
2 changed files with 155 additions and 0 deletions

View File

@@ -14,4 +14,12 @@ public class CraftExperienceOrb extends CraftEntity implements ExperienceOrb {
public EntityExperienceOrb getHandle() {
return (EntityExperienceOrb) super.getHandle();
}
public int getExperience() {
return getHandle().value;
}
public void setExperience(int value) {
getHandle().value = value;
}
}