MoonWorks/src/Video/VideoState.cs

10 lines
91 B
C#

namespace MoonWorks.Video
{
public enum VideoState
{
Playing,
Paused,
Stopped
}
}