Server.SpeedInfo.Contains C# (CSharp) Method

Contains() public static method

public static Contains ( object obj ) : bool
obj object
return bool
		public static bool Contains( object obj )
		{
			if ( !Enabled )
				return false;

			if ( m_Table == null )
				LoadTable();

			SpeedInfo sp = (SpeedInfo)m_Table[obj.GetType()];

			return ( sp != null );
		}