Server.Items.AddonContainerComponent.OnDragDrop C# (CSharp) Method

OnDragDrop() public method

public OnDragDrop ( Mobile from, Server.Items.Item dropped ) : bool
from Mobile
dropped Server.Items.Item
return bool
		public override bool OnDragDrop( Mobile from, Item dropped )
		{
			if ( Addon != null )
				return Addon.OnDragDrop( from, dropped );

			return false;
		}