Skip to content

Commit

Permalink
remove unused mediaplayer code
Browse files Browse the repository at this point in the history
  • Loading branch information
joekolodz committed Nov 7, 2024
1 parent 469510f commit a022d9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Factories/MediaPlayerFactory.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using SierraHOTAS.Models;
using System.Windows.Media;
using NAudio.Wave;
using SierraHOTAS.Models;

namespace SierraHOTAS.Factories
{
public class MediaPlayerFactory
{
public virtual IMediaPlayer CreateMediaPlayer()
{
return new MediaPlayerWrapper(new MediaPlayer());
return new MediaPlayerWrapper(new WaveOutEvent());
}
}
}

0 comments on commit a022d9a

Please sign in to comment.