I would like to declare VertexArray in class
class ramka
{
public:
sf::VertexArray ramkaa(sf::Triangles, 3);
void positioning();
void draw();
};
But this shows error like "'sf::Triangles' is not a type|" . If im declaring it in void draw(); then there is no problem, but i would to have it like globally in class. How can i do this?