Watch
2
0
Fork
You've already forked raylib-cs
0

AttachAudioMixedProcessor Utils for easy callback (#215)

This commit is contained in:
Nicky McDonald 2024-02-24 03:44:13 -05:00 committed by GitHub
commit b049b4f88d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace Raylib_cs;
/// <summary>
/// Audio stream processor.
/// Used with Raylib.AttachAudioMixedProcessor()
/// and Raylib.DetachAudioMixedProcessor()
/// </summary>
public delegate void AudioCallback<T>(Span<T> buffer);