using System.Runtime.InteropServices;
namespace Raylib_cs;
///
/// Sound source type
///
[StructLayout(LayoutKind.Sequential)]
public partial struct Sound
{
///
/// Audio stream
///
public AudioStream Stream;
///
/// Total number of frames (considering channels)
///
public uint FrameCount;
}