OpenAL sound implementation.

This commit is contained in:
2023-06-17 00:56:17 +02:00
parent 7d5c5f822b
commit 36eae40926
9 changed files with 211 additions and 30 deletions

View File

@@ -27,12 +27,17 @@ namespace DaggerFramework.Audio
return;
}
public override void Shutdown()
{
return;
}
public override void Update()
{
return;
}
protected override void PlaySound(Sound sound, string bus = "Master", float pitch = 1, float volume = 1)
public override void PlaySound(Sound sound, string bus = "Master", float pitch = 1, float volume = 1)
{
return;
}