Hello,
Is it possible to declare a window variable in a class?
Right now I have
class dumbClass{
sf::Window App;
};
And it gives me errors about NonCopyable. Clearly I am doing something wrong.
edit: I figured out the problem. Doesn't want me to instantiate without it's constructor, so I just made a pointer to the window. (sf::Window * app)