Server.Items.SlayerGroup.OppositionSuperSlays C# (CSharp) Метод

OppositionSuperSlays() публичный Метод

public OppositionSuperSlays ( Server.Mobile m ) : bool
m Server.Mobile
Результат bool
		public bool OppositionSuperSlays( Mobile m )
		{
			for( int i = 0; i < Opposition.Length; i++ )
			{
				if ( Opposition[i].Super.Slays( m ) )
					return true;
			}

			return false;
		}