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