Terraria.Player.checkDPSTime C# (CSharp) 메소드

checkDPSTime() 공개 메소드

public checkDPSTime ( ) : void
리턴 void
        public void checkDPSTime()
        {
            if (!this.dpsStarted || (DateTime.Now - this.dpsLastHit).Seconds < 3)
                return;
            this.dpsStarted = false;
        }
Player