Server.Items.InteriorDecorator.OnDoubleClick C# (CSharp) Method

OnDoubleClick() public method

public OnDoubleClick ( Server.Mobile from ) : void
from Server.Mobile
return void
		public override void OnDoubleClick( Mobile from )
		{
			if ( !CheckUse( from ) )
				return;
			
			if ( from.FindGump( typeof( InteriorDecorator.InternalGump ) ) == null )
				from.SendGump( new InternalGump( this ) );

			if ( m_Command != DecorateCommand.None )
				from.Target = new InternalTarget( this );
		}