Terraria.Player.checkDPSTime C# (CSharp) Method

checkDPSTime() public method

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