This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.Audio/PlaybackState.cs

17 lines
362 B
C#

namespace Ryujinx.Audio
{
/// <summary>
/// The playback state of a track
/// </summary>
public enum PlaybackState
{
/// <summary>
/// The track is currently playing
/// </summary>
Playing = 0,
/// <summary>
/// The track is currently stopped
/// </summary>
Stopped = 1
}
}