Server.Items.Moongate.EndConfirmation C# (CSharp) Method

EndConfirmation() public method

public EndConfirmation ( Mobile from ) : void
from Mobile
return void
		public virtual void EndConfirmation( Mobile from )
		{
			if ( !ValidateUse( from, true ) )
				return;

			UseGate( from );
		}

Usage Example

コード例 #1
0
 public override void OnResponse(NetState state, RelayInfo info)
 {
     if (info.ButtonID == 1)
     {
         m_Gate.EndConfirmation(m_From);
     }
 }
All Usage Examples Of Server.Items.Moongate::EndConfirmation