9 lines
147 B
C#
9 lines
147 B
C#
namespace FlowScope.Audio
|
|
{
|
|
public interface IAudioHandle
|
|
{
|
|
void Stop(float fadeOut = 0f);
|
|
bool IsPlaying { get; }
|
|
}
|
|
}
|