using System; using System.Runtime.InteropServices; namespace Raylib_cs; /// /// Wave type, defines audio wave data /// [StructLayout(LayoutKind.Sequential)] public unsafe partial struct Wave { /// /// Number of samples /// public uint SampleCount; /// /// Frequency (samples per second) /// public uint SampleRate; /// /// Bit depth (bits per sample): 8, 16, 32 (24 not supported) /// public uint SampleSize; /// /// Number of channels (1-mono, 2-stereo) /// public uint Channels; //TODO: SPAN ? /// /// Buffer data pointer /// public void* Data; }