pocketmine\Player::setExp PHP 메소드

setExp() 공개 메소드

사용 중단: Use Human::setTotalXp($xp), this method will be removed in the future.
public setExp ( integer $exp )
$exp integer
    public function setExp(int $exp)
    {
        trigger_error("This method is deprecated, do not use it", E_USER_DEPRECATED);
        return $this->setTotalXp($exp);
    }
Player