Server.Items.AcidSlime.Damage C# (CSharp) Method

Damage() public method

public Damage ( Mobile m ) : void
m Mobile
return void
		public void Damage ( Mobile m )
		{
			int damage = Utility.RandomMinMax( m_MinDamage, m_MaxDamage );
			m.Damage( damage );
		}