EndConfirmation() public méthode

public EndConfirmation ( Mobile from ) : void
from Mobile
Résultat void
Exemple #1
0
 public override void OnResponse(NetState state, RelayInfo info)
 {
     if (info.ButtonID == 1)
     {
         m_Gate.EndConfirmation(m_From);
     }
 }
Exemple #2
0
        public override void OnResponse(NetState state, int index)
        {
            if (index == 0)
            {
                m_Gate.EndConfirmation(m_From);
            }

            if (m_From is PlayerMobile)
            {
                ((PlayerMobile)m_From).HasMenu = false;
            }
        }
Exemple #3
0
 protected override void OnTick()
 {
     m_Gate.EndConfirmation(m_From);
 }