Greetings,
I thought I would be able to play sounds that way :
sf::Music music;
music.OpenFromFile("../Data/Music/canary.wav");
music.Play();
If music is destroyed the sound will stop playing. What is a common technique for handling several sound entities and music playback in SFML? A separate thread for each sound and/or wrapping a sound class?