LoadSoundEffect /Audio and multimedia

bool LoadSoundEffect(string fileName)

Loads a sound effect sample. Unlike LoadMusic, this function loads the entire sound buffer into memory, so avoid samples longer than 20 seconds.

void onSceneCreated()
{
    LoadSoundEffect("soundfx/explosion.mp3");
}