Server.Spells.Sixth.InvisibilitySpell.RemoveTimer C# (CSharp) Méthode

RemoveTimer() public static méthode

public static RemoveTimer ( Mobile m ) : void
m Mobile
Résultat void
		public static void RemoveTimer( Mobile m )
		{
			Timer t = (Timer)m_Table[m];

			if ( t != null )
			{
				t.Stop();
				m_Table.Remove( m );
			}
		}