Files
linker/cmonitor/plugins/volume/report/VolumeLinux.cs
2024-04-01 09:49:35 +08:00

33 lines
528 B
C#

namespace cmonitor.plugins.volume.report
{
public sealed class VolumeLinux : IVolume
{
public float GetMasterPeak()
{
return 0;
}
public bool GetMute()
{
return false;
}
public float GetVolume()
{
return 0;
}
public void Play(byte[] audioBytes)
{
}
public void SetMute(bool value)
{
}
public void SetVolume(float value)
{
}
}
}