mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
22 lines
434 B
C#
22 lines
434 B
C#
using System;
|
|
namespace Nuake.Net
|
|
{
|
|
public class AudioModule
|
|
{
|
|
public static void SetVolume(float volume)
|
|
{
|
|
unsafe
|
|
{
|
|
Internals.AudioModuleSetVolumeICall(volume);
|
|
}
|
|
}
|
|
public static void SetMuted(bool muted)
|
|
{
|
|
unsafe
|
|
{
|
|
Internals.AudioModuleSetMutedICall(muted);
|
|
}
|
|
}
|
|
}
|
|
}
|