Skip to content

Instantly share code, notes, and snippets.

@KrzaQ
Last active July 8, 2017 16:07
Show Gist options
  • Save KrzaQ/b7c64572ec7717180d124741f4f8c477 to your computer and use it in GitHub Desktop.
Save KrzaQ/b7c64572ec7717180d124741f4f8c477 to your computer and use it in GitHub Desktop.
class Window
{
private:
Window(){}
Window(const Window &){}
sf::RenderWindow window;
public:
static sf::RenderWindow& getWindow()
{
static Window window;
return window.window;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment