BeginRemove() public méthode

public BeginRemove ( Mobile from ) : void
from Mobile
Résultat void
            public override void OnClick()
            {
                if (m_Chest.Deleted || m_From != m_Chest.Owner || !m_From.CheckAlive())
                {
                    return;
                }

                m_Chest.BeginRemove(m_From);
            }