//Создание доски с нуля, по точкам
        void DeskOnPaint(SuperImage s, SuperImagePainter p)
        {
            if (bullet_count > 0)
            {
                p.FillPolygon(desk_points, Color.Pink);
                p.DrawString(bullet_count.ToString(), 6, s.Width / 2 - 4, 2, Color.Black);
            }
            else
            {
                p.FillPolygon(desk_points, Color.Yellow);
            }

            p.DrawPolygon(desk_points, Color.Black, 2);
        }