Is it possible to share only one texture into a different Sprites in order to minimize creating texture object?
or should I just make a Copy of it?
sf::Sprite enemy;
sf::Sprite player;
sf::Texture *texture;
texture = new Texture();
if (texture->loadFromFile("assets/player.png"))
player.setTexture(texture);
if (texture->loadFromFile("assets/enemy.png"))
enemy.setTexture(texture);