mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-06 06:09:52 +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);
|
|
}
|
|
}
|
|
}
|
|
}
|