mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
19 lines
426 B
C#
19 lines
426 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Raylib_cs
|
|
{
|
|
/// <summary>Sound source type</summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct Sound
|
|
{
|
|
/// <summary>
|
|
/// Audio stream
|
|
/// </summary>
|
|
public AudioStream stream;
|
|
|
|
/// <summary>
|
|
/// Total number of frames (considering channels)
|
|
/// </summary>
|
|
public uint frameCount;
|
|
}
|
|
} |