LoadMusic /Audio and multimedia

bool LoadMusic(string fileName)

Loads a music sample for playback, usually through streaming. Long ambient sound effects should also be loaded with this function to avoid buffering ridiculous amounts of data.

void onSceneCreated()
{
    LoadMusic("musics/highway_to_hell.mp3");
}