private void MoveToOtherSpace()
        {
            int transportingXLocation = 0;


            if (thePacman.image.Left <= 0)
            {
                transportingXLocation = 360;
            }

            Point point = new Point(transportingXLocation, thePacman.image.Top);

            Eat(mapObjectOperator.GetObject(point));

            thePacman.image.Left = transportingXLocation;
        }