Now bindings between coral and and generatedC# correctly working

This commit is contained in:
antopilo
2025-04-04 17:11:48 -04:00
parent 1668363c4e
commit bff8ca2be1
7 changed files with 61 additions and 46 deletions

View File

@@ -7,7 +7,14 @@ namespace Nuake.Net
{
unsafe
{
Internals.SetVolumeICall(volume);
Internals.AudioModuleSetVolumeICall(volume);
}
}
public static void SetMuted(bool muted)
{
unsafe
{
Internals.AudioModuleSetMutedICall(muted);
}
}
}