Server.Items.InteriorDecorator.OnDoubleClick C# (CSharp) Méthode

OnDoubleClick() public méthode

public OnDoubleClick ( Server.Mobile from ) : void
from Server.Mobile
Résultat 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 );
		}