2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

AttachAndDetach

This commit is contained in:
Nickolas McDonald
2024-01-03 20:11:05 -05:00
parent 43f1924faa
commit ae4b762908
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);