示例#1
0
        public void PutBomb()
        {
            Point playerPoint = player.MyNowPoint();

            if (map[playerPoint.X, playerPoint.Y] == Sost.бомба)
            {
                return;
            }
            if (player.PutBomb(mapPic, Babah))
            {
                ChangeSost(player.MyNowPoint(), Sost.бомба);
            }
        }