Server.Items.DecayedCorpse.BeginDecay C# (CSharp) Method

BeginDecay() public method

public BeginDecay ( System.TimeSpan delay ) : void
delay System.TimeSpan
return void
		public void BeginDecay( TimeSpan delay )
		{
			if ( m_DecayTimer != null )
				m_DecayTimer.Stop();

			m_DecayTime = DateTime.Now + delay;

			m_DecayTimer = new InternalTimer( this, delay );
			m_DecayTimer.Start();
		}