Skip to content

Instantly share code, notes, and snippets.

@Shaptic
Created June 29, 2012 02:17
Show Gist options
  • Save Shaptic/3015250 to your computer and use it in GitHub Desktop.
Save Shaptic/3015250 to your computer and use it in GitHub Desktop.
MediaManager::MusicPlayer
int main()
{
bool quit = false;
MediaManager::MusicPlayer MusicPlayer;
MusicPlayer.AddSongToQueue("Song1.ogg");
MusicPlayer.AddSongToQueue("Song2.ogg");
while(!quit)
{
MusicPlayer.Update();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment