mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-07-04 19:23:43 -04:00
AttachAudioMixedProcessor Utils for easy callback (#215)
This commit is contained in:
10
Raylib-cs/types/AudioCallback.cs
Normal file
10
Raylib-cs/types/AudioCallback.cs
Normal 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);
|
Reference in New Issue
Block a user