mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
11 lines
241 B
C#
11 lines
241 B
C#
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);
|