public Symbol(Figure <bool> f, int h = 3, int w = 3)
        {
            figure = f;

            H = h; W = w;
        }
        public Symbol()
        {
            H = W = 3;

            figure = null;
        }