mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
33 lines
528 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|