Skip to content

Instantly share code, notes, and snippets.

@PoetaKodu
Last active January 29, 2017 11:59
Show Gist options
  • Save PoetaKodu/042536e85f3d88b22dabc5118cc1cd5d to your computer and use it in GitHub Desktop.
Save PoetaKodu/042536e85f3d88b22dabc5118cc1cd5d to your computer and use it in GitHub Desktop.
class Resources
{
public:
Resources()
: m_window(new sf::RenderWindow(sf::VideoMode(800, 600, 32), "Okienko"))
{
}
~Resources()
{
if(m_window)
delete m_window;
}
protected:
sf::RenderWindow *m_window;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment