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