mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-21 20:08:40 +03:00
C# generator now working with bindings.json
This commit is contained in:
21
NuakeNet/Source/Generated/AudioModule.cs
Normal file
21
NuakeNet/Source/Generated/AudioModule.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user