Exemplo n.º 1
0
        public void PhoneNumberDelete(int x, int y)
        {
            PhoneNumber pn = PhoneNumberGet(x, y);

            if (pn != null)
            {
                GridCells.Remove(pn);
                pn.Destroy();
                DrawArea.RemovePhoneNumber(pn);
            }
        }