mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
22 lines
399 B
C#
22 lines
399 B
C#
namespace CUETools.Codecs
|
|
{
|
|
/// <summary>
|
|
/// Playback State
|
|
/// </summary>
|
|
public enum PlaybackState
|
|
{
|
|
/// <summary>
|
|
/// Stopped
|
|
/// </summary>
|
|
Stopped,
|
|
/// <summary>
|
|
/// Playing
|
|
/// </summary>
|
|
Playing,
|
|
/// <summary>
|
|
/// Paused
|
|
/// </summary>
|
|
Paused
|
|
}
|
|
}
|