pocketmine\Player::addExperience PHP Метод

addExperience() публичный Метод

Устаревший: Use Human::addXp($xp), this method will be removed in the future.
public addExperience ( integer $exp )
$exp integer
    public function addExperience(int $exp)
    {
        trigger_error("This method is deprecated, do not use it", E_USER_DEPRECATED);
        return $this->addXp($exp);
    }
Player