MapServer.PlayerObject.ResetLevelExp C# (CSharp) 메소드

ResetLevelExp() 공개 메소드

public ResetLevelExp ( ) : void
리턴 void
        public void ResetLevelExp()
        {
            ulong _exp = 0;
            GameStruct.LevelExp exp = ConfigManager.Instance().GetLevelExp(GameStruct.LevelExp.LEVELEXP_ROLE, GetBaseAttr().level);
            if (exp != null)
            {
                _exp = exp.exp;
            }
            GetBaseAttr().exp_max = _exp;
        }