aurora/Aurora/Services/Player/PlaybackState.cs

13 lines
148 B
C#
Raw Normal View History

2020-02-01 01:41:45 +00:00
using System;
namespace Aurora.Services.Player
{
public enum PlaybackState
{
Playing,
Stopped,
Buffering,
}
}