Initial commit

This commit is contained in:
2022-03-05 00:43:36 -07:00
commit 151a322276
29 changed files with 1171 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using TechMedia.Core.Backend;
namespace TechMedia.Backend.WinAudio;
public class WinAudioBackend : IAudioBackend
{
public void PlayFile(string filename)
{
throw new NotImplementedException();
}
}