I'm trying to make an rpg using visual studio console and I can't get sounds to overlap. I want my background music to play while an attack sound or a select sound plays over it
An example:
Console.ReadLine();
soundplayer s = new soundplayer('path here');
soundplayer b = new soundplayer('path here');
s.play();
string f = console.readline();
if(f = "has")
{
b.play
}
but I want s to keep playing while b plays over it