Server.Items.Plank.CanClose C# (CSharp) Méthode

CanClose() public méthode

public CanClose ( ) : bool
Résultat bool
		public bool CanClose()
		{
			Map map = Map;

			if ( map == null || Deleted )
				return false;

			foreach ( object o in this.GetObjectsInRange( 0 ) )
			{
				if ( o != this )
					return false;
			}

			return true;
		}