OpenNos.GameObject.Character.HealthMPLoad C# (CSharp) 메소드

HealthMPLoad() 공개 메소드

public HealthMPLoad ( ) : int
리턴 int
        public int HealthMPLoad()
        {
            if (IsSitting)
            {
                return CharacterHelper.MPHealth[(byte)Class];
            }
            else if ((DateTime.Now - LastDefence).TotalSeconds > 2)
            {
                return CharacterHelper.MPHealthStand[(byte)Class];
            }
            else
            {
                return 0;
            }
        }
Character