Hi there,
I'm trying to declare my SFML window as a "class-wide" variable so that I can use it in all of the class' methods (forgive me if this isn't the correct way of doing things, I'm coming from Java!)
I tried adding it as a private variable in my header like so:
private:
sf::Window windowMenu;
However my program then throws various errors about how Window is non-copyable? Is there any way to declare a window such that its scope is class-wide?