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