Server.Items.BandageContext.BandageContext C# (CSharp) Method

BandageContext() public method

public BandageContext ( Mobile healer, Mobile patient, System.TimeSpan delay ) : System
healer Mobile
patient Mobile
delay System.TimeSpan
return System
		public BandageContext( Mobile healer, Mobile patient, TimeSpan delay )
		{
			m_Healer = healer;
			m_Patient = patient;

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