Skip to content

Instantly share code, notes, and snippets.

@ngscheurich
Created July 14, 2012 21:16
Show Gist options
  • Save ngscheurich/3113400 to your computer and use it in GitHub Desktop.
Save ngscheurich/3113400 to your computer and use it in GitHub Desktop.
Play audio using SFML
// @library SFML 2.0 RC
// Load the sound file
sf::Music sound;
if (!sound.openFromFile("soundfile.ogg")) {
return EXIT_FAILURE;
}
// Play the sound
sound.play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment