o my god,
well i wrote a class called bat
class
{
Shape x;
...
}
and now i want my bat in main to be drawn, how can i tell the programm how to do it?
RenderWindow App;
App.Create(sf::VideoMode(800, 600, 32), "SFML Window", Style::Fullscreen);
bat left;
App.Draw(left);
surely will not work, but how can i do it?