mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-02 20:34:07 +02:00
13 lines
287 B
C#
13 lines
287 B
C#
using System;
|
|
|
|
namespace TweetDuck.Core.Notification.Sound{
|
|
interface ISoundNotificationPlayer : IDisposable{
|
|
string SupportedFormats { get; }
|
|
|
|
event EventHandler<PlaybackErrorEventArgs> PlaybackError;
|
|
|
|
void Play(string file);
|
|
void Stop();
|
|
}
|
|
}
|