Server.Items.BarbedHides.Scissor C# (CSharp) Méthode

Scissor() public méthode

public Scissor ( Mobile from, Scissors scissors ) : bool
from Mobile
scissors Scissors
Résultat bool
		public bool Scissor( Mobile from, Scissors scissors )
		{
			if ( Deleted || !from.CanSee( this ) ) return false;

			base.ScissorHelper( from, new BarbedLeather(), 1 );

			return true;
		}
	}